10 lines
193 B
C#
10 lines
193 B
C#
namespace NBF.Utils
|
|
{
|
|
public static class ItemHelper
|
|
{
|
|
public static ItemType GetItemType(this uint id)
|
|
{
|
|
return (ItemType)(id / 10000);
|
|
}
|
|
}
|
|
} |