Files
Fishing2/Assets/Scripts/Common/Utils/ItemHelper.cs
2025-10-14 17:58:49 +08:00

10 lines
193 B
C#

namespace NBF.Utils
{
public static class ItemHelper
{
public static ItemType GetItemType(this uint id)
{
return (ItemType)(id / 10000);
}
}
}