Files
unity-flash-tools/Assets/FlashTools/Scripts/Internal/SwfPowerOfTwoIfAttribute.cs
2016-08-24 12:26:31 +07:00

14 lines
327 B
C#

using UnityEngine;
namespace FlashTools.Internal {
public class SwfPowerOfTwoIfAttribute : PropertyAttribute {
public string BoolProp;
public int Min;
public int Max;
public SwfPowerOfTwoIfAttribute(string bool_prop, int min, int max) {
BoolProp = bool_prop;
Min = min;
Max = max;
}
}
}