Minecraft-Console-Client/MinecraftClient/Inventory/ItemRarity.cs

9 lines
119 B
C#
Raw Normal View History

2024-09-11 19:12:31 +02:00
namespace MinecraftClient.Inventory;
public enum ItemRarity : int
{
Common = 0,
Uncommon,
Rare,
Epic
}