mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-27 20:52:54 +00:00
15 lines
275 B
C++
15 lines
275 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);
|
|
}; |