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