mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
25 lines
273 B
C++
25 lines
273 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace nejlika
|
|
{
|
|
|
|
enum class ModifierRarity : uint8_t
|
|
{
|
|
Common,
|
|
Uncommon,
|
|
Rare,
|
|
Epic,
|
|
Legendary,
|
|
Relic
|
|
};
|
|
|
|
namespace ModifierRarityHelper
|
|
{
|
|
const std::string& GetModifierRarityColor(ModifierRarity rarity);
|
|
}
|
|
|
|
}
|