Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SerializationTypeCode

Enumerator
Invalid 
Boolean 
Char 
SByte 
Byte 
Int16 
UInt16 
Int32 
UInt32 
Int64 
UInt64 
Single 
Double 
String 
SZArray 
Type 
TaggedObject 
Enum 

Definition at line 3 of file SerializationTypeCode.cs.

4{
5 Invalid = 0,
6 Boolean = 2,
7 Char = 3,
8 SByte = 4,
9 Byte = 5,
10 Int16 = 6,
11 UInt16 = 7,
12 Int32 = 8,
13 UInt32 = 9,
14 Int64 = 10,
15 UInt64 = 11,
16 Single = 12,
17 Double = 13,
18 String = 14,
19 SZArray = 29,
20 Type = 80,
21 TaggedObject = 81,
22 Enum = 85
23}