blob: a0f70756f1de39e6215373ebb2893245373fbe1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
internal class ItemUseMgr
{
public static uint GetItemUseValue(ItemUse type)
{
return (uint)XFastEnumIntEqualityComparer<ItemUse>.ToInt(type);
}
}
}
|