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

namespace XMainClient.UI
{
	internal class SystemRewardTypeMrg
	{
		public static uint GetTypeUInt(SystemRewardType _type)
		{
			return (uint)XFastEnumIntEqualityComparer<SystemRewardType>.ToInt(_type);
		}
	}
}