mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-05-14 11:18:39 -05:00
99c0ca253c
* Overhaul BasicAttack Behavior so it matches the live 1.10.64 client
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__
|