Questionable/Questionable.Model/Questing/EEnemySpawnType.cs

15 lines
305 B
C#
Raw Normal View History

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