// Assets/_Project/Scripts/Core/BuilderEffectKind.cs namespace TD.Core { /// /// Identifies which builder effect a /// represents. Backs a /// bitmask on , so keep this to 32 entries /// or fewer (or widen the mask to ulong if it ever needs more). /// public enum BuilderEffectKind : byte { GoldPerKill = 0, } }