12 lines
190 B
C#
Executable File
12 lines
190 B
C#
Executable File
namespace Assets.HeroEditor4D.InventorySystem.Scripts.Enums
|
|
{
|
|
public enum ItemRarity
|
|
{
|
|
Legacy = -2,
|
|
Basic = -1,
|
|
Common = 0,
|
|
Rare = 1,
|
|
Epic = 2,
|
|
Legendary = 3
|
|
}
|
|
} |