DarkflameServer/dGame/dGrim/StatRarity.h
wincent 5973430720 Grim LU
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
2023-07-15 10:54:41 +02:00

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__