mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 21:03:37 +00:00
11 lines
421 B
C++
11 lines
421 B
C++
#include "../Platform/stdafx.h"
|
|
|
|
#include "Rarity.h"
|
|
|
|
const Rarity* Rarity::common = new Rarity(eHTMLColor_f, L"Common");
|
|
const Rarity* Rarity::uncommon = new Rarity(eHTMLColor_e, L"Uncommon");
|
|
const Rarity* Rarity::rare = new Rarity(eHTMLColor_b, L"Rare");
|
|
const Rarity* Rarity::epic = new Rarity(eHTMLColor_d, L"Epic");
|
|
|
|
Rarity::Rarity(eMinecraftColour color, const std::wstring& name)
|
|
: color(color), name(name) {} |