18 lines
374 B
C#
18 lines
374 B
C#
|
using game;
|
|||
|
|
|||
|
public static class EnumExtensions
|
|||
|
{
|
|||
|
public static uint GetItemID(this EnumConsumable item)
|
|||
|
{
|
|||
|
switch (item)
|
|||
|
{
|
|||
|
case EnumConsumable.COIN:
|
|||
|
return 166039439;
|
|||
|
case EnumConsumable.KEY:
|
|||
|
return 49554996;
|
|||
|
default:
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|