using System; using UnityEngine; namespace NBF { [TableName("gameLeaders")] public partial class LeadersConfig : ConfigGearBase { public enum Type { Mono = 0, Wire = 1, Steel = 2, Titanium = 3 } public Type type; } }