27 lines
418 B
C#
27 lines
418 B
C#
namespace MLAPI.Data
|
|
{
|
|
/// <summary>
|
|
/// The datatype used to classify SyncedVars
|
|
/// </summary>
|
|
internal enum FieldType
|
|
{
|
|
Bool,
|
|
Byte,
|
|
Char,
|
|
Double,
|
|
Single,
|
|
Int,
|
|
Long,
|
|
SByte,
|
|
Short,
|
|
UInt,
|
|
ULong,
|
|
UShort,
|
|
String,
|
|
Vector3,
|
|
Vector2,
|
|
Quaternion,
|
|
ByteArray
|
|
}
|
|
}
|