23 lines
319 B
C#
23 lines
319 B
C#
namespace MLAPI.Attributes
|
|
{
|
|
internal enum FieldType
|
|
{
|
|
Bool,
|
|
Byte,
|
|
Char,
|
|
Double,
|
|
Single,
|
|
Int,
|
|
Long,
|
|
SByte,
|
|
Short,
|
|
UInt,
|
|
ULong,
|
|
UShort,
|
|
String,
|
|
Vector3,
|
|
Vector2,
|
|
Quaternion
|
|
}
|
|
}
|