add new type to PropertyType enum
This commit is contained in:
@@ -278,17 +278,18 @@ namespace OMFormat {
|
|||||||
//-----------------------------------------------------------------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
//this enum stores the type of the property so that it can be recovered
|
//this enum stores the type of the property so that it can be recovered
|
||||||
enum PropertyType {
|
enum PropertyType {
|
||||||
BoolType = 0x00,
|
UnknownType = 0x00,
|
||||||
UCharType= 0x01,
|
BoolType = 0x01,
|
||||||
CharType = 0x02,
|
UCharType= 0x02,
|
||||||
ShortType = 0x03,
|
CharType = 0x03,
|
||||||
UIntType = 0x04,
|
ShortType = 0x04,
|
||||||
IntType = 0x05,
|
UIntType = 0x05,
|
||||||
ULongType = 0x06,
|
IntType = 0x06,
|
||||||
LongType = 0x07,
|
ULongType = 0x07,
|
||||||
FloatType = 0x08,
|
LongType = 0x08,
|
||||||
DoubleType = 0x09,
|
FloatType = 0x09,
|
||||||
VecDoubleType = 0x0a
|
DoubleType = 0x0a,
|
||||||
|
VecDoubleType = 0x0b
|
||||||
};
|
};
|
||||||
//-----------------------------------------------------------------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user