summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ProtoBuf/ProtoTypeCode.cs
blob: 800393452f0274f221c4b113b75fdb5ddd746cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;

namespace ProtoBuf
{
	internal enum ProtoTypeCode
	{
		Empty,
		Unknown,
		Boolean = 3,
		Char,
		SByte,
		Byte,
		Int16,
		UInt16,
		Int32,
		UInt32,
		Int64,
		UInt64,
		Single,
		Double,
		Decimal,
		DateTime,
		String = 18,
		TimeSpan = 100,
		ByteArray,
		Guid,
		Uri,
		Type
	}
}