mirror of
https://github.com/Squareville/wonderland-server.git
synced 2025-12-16 20:34:54 -06:00
* Assorted pet improvements * remove unecessary include * updates to address some feedback * fixed database code for testing * Removed reference member (for now) * Removed cmake flag
14 lines
214 B
C++
14 lines
214 B
C++
#ifndef __EPETABILITYTYPE__H__
|
|
#define __EPETABILITYTYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class ePetAbilityType : uint32_t {
|
|
Invalid,
|
|
GoToObject,
|
|
JumpOnObject,
|
|
DigAtPosition
|
|
};
|
|
|
|
#endif //!__EPETABILITYTYPE__H__
|