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