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

namespace XMainClient
{
	internal class XSysDefineMgr
	{
		public static int GetTypeInt(XSysDefine eType)
		{
			return XFastEnumIntEqualityComparer<XSysDefine>.ToInt(eType);
		}
	}
}