mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2025-12-15 12:29:49 +07:00
14 lines
327 B
C#
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;
|
|
}
|
|
}
|
|
} |