mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-28 08:27:22 +00:00
19 lines
242 B
C
19 lines
242 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __ESTATRARITY__H__
|
||
|
#define __ESTATRARITY__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eStatRarity : uint32_t {
|
||
|
Common = 0,
|
||
|
Uncommon = 1,
|
||
|
Rare = 2,
|
||
|
Epic = 3,
|
||
|
Legendary = 4,
|
||
|
Relic = 5,
|
||
|
|
||
|
MAX
|
||
|
};
|
||
|
|
||
|
#endif //!__ESTATRARITY__H__
|