using System.Diagnostics.CodeAnalysis; namespace Creaturelibbattling { [SuppressMessage("ReSharper", "InconsistentNaming")] public enum EffectParameterType : byte { None = 0, Bool = 1, Int = 2, Float = 3, String = 4, } }