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

namespace XMainClient
{
	internal struct XEmblemInfo
	{
		public uint level;

		public uint thirdslot;

		public void Init()
		{
			this.level = 0u;
			this.thirdslot = 0u;
		}
	}
}