forked from liza/Questionable
16 lines
322 B
C#
16 lines
322 B
C#
using System.Text.Json.Serialization;
|
|
using Questionable.Model.Questing.Converter;
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
[JsonConverter(typeof(EnemySpawnTypeConverter))]
|
|
public enum EEnemySpawnType
|
|
{
|
|
None = 0,
|
|
AfterInteraction,
|
|
AfterItemUse,
|
|
AfterAction,
|
|
AutoOnEnterArea,
|
|
OverworldEnemies,
|
|
}
|