mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-16 06:52:52 +00:00
14 lines
296 B
C++
14 lines
296 B
C++
#pragma once
|
|
|
|
class Rarity {
|
|
public:
|
|
static const Rarity* common;
|
|
static const Rarity* uncommon;
|
|
static const Rarity* rare;
|
|
static const Rarity* epic;
|
|
|
|
const eMinecraftColour color;
|
|
const std::wstring name;
|
|
|
|
Rarity(eMinecraftColour color, const std::wstring& name);
|
|
}; |