mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
5973430720
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
18 lines
265 B
C++
18 lines
265 B
C++
#pragma once
|
|
|
|
#ifndef __ESTATMODIFIER__H__
|
|
#define __ESTATMODIFIER__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eStatModifier : uint32_t {
|
|
Absolute = 0,
|
|
Percent = 1,
|
|
DamageAbsolute = 2,
|
|
DamagePercent = 3,
|
|
DamageResistance = 4,
|
|
|
|
MAX
|
|
};
|
|
|
|
#endif //!__ESTATMODIFIER__H__
|