17 lines
339 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 18:30:21 +02:00
using Questionable.Model.Questing.Converter;
2024-05-27 21:54:34 +02:00
2024-08-02 18:30:21 +02:00
namespace Questionable.Model.Questing;
[JsonConverter(typeof(EnemySpawnTypeConverter))]
2024-06-14 11:37:33 +02:00
public enum EEnemySpawnType
2024-05-27 21:54:34 +02:00
{
None = 0,
AfterInteraction,
AfterItemUse,
2024-09-01 14:21:26 +02:00
AfterAction,
2024-05-27 21:54:34 +02:00
AutoOnEnterArea,
OverworldEnemies,
2024-09-11 23:17:39 +02:00
FateEnemies,
2024-05-27 21:54:34 +02:00
}