mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-26 12:44:36 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
11 lines
381 B
C++
11 lines
381 B
C++
|
|
#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 wstring &name) : color(color), name(name)
|
|
{
|
|
} |