mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 05:17:23 +00:00
18 lines
347 B
C++
18 lines
347 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "minecraft/GameEnums.h"
|
|
|
|
class Rarity {
|
|
public:
|
|
static const Rarity* common;
|
|
static const Rarity* uncommon;
|
|
static const Rarity* rare;
|
|
static const Rarity* epic;
|
|
|
|
const eMinecraftColour color;
|
|
const std::string name;
|
|
|
|
Rarity(eMinecraftColour color, const std::string& name);
|
|
}; |