11 lines
202 B
C#
11 lines
202 B
C#
namespace PkmnLibSharp.Library.Items
|
|
{
|
|
public enum BattleItemCategory
|
|
{
|
|
None = 0,
|
|
Healing = 1,
|
|
StatusHealing = 2,
|
|
Pokeball = 3,
|
|
MiscBattleItem = 4
|
|
}
|
|
} |