summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ProtoBuf/SubItemToken.cs
blob: 7c7931ace86b13bad2295ea6a79ad1a5e0a1f374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace ProtoBuf
{
	public struct SubItemToken
	{
		internal readonly int value;

		internal SubItemToken(int value)
		{
			this.value = value;
		}
	}
}