mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-21 11:59:37 -06:00
13 lines
234 B
C++
13 lines
234 B
C++
#ifndef __EBASICATTACKSUCCESSTYPES__H__
|
|
#define __EBASICATTACKSUCCESSTYPES__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eBasicAttackSuccessTypes : uint8_t {
|
|
SUCCESS = 1,
|
|
FAILARMOR,
|
|
FAILIMMUNE
|
|
};
|
|
|
|
#endif //!__EBASICATTACKSUCCESSTYPES__H__
|