12 lines
176 B
C#
12 lines
176 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class BitMaskAttribute : PropertyAttribute
|
||
|
|
{
|
||
|
|
public System.Type propType;
|
||
|
|
|
||
|
|
public BitMaskAttribute(System.Type aType)
|
||
|
|
{
|
||
|
|
propType = aType;
|
||
|
|
}
|
||
|
|
}
|