Files
GameJamDungeon/src/game/ElementType.cs

17 lines
267 B
C#

using System.Text.Json.Serialization;
namespace GameJamDungeon;
public enum ElementType
{
None,
Aeolic,
Telluric,
Hydric,
Igneous,
Ferrum
}
[JsonSerializable(typeof(ElementType))]
public partial class ElementTypeEnumContext : JsonSerializerContext;