mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-04-25 19:38:18 -05:00
6aa90ad5b2
* Breakout rest of the enums from dcommonvars so we don't have to deal with merge conflicts ePlayerFlags is not a scoped enum, yet, due to it's complexity * address feedback * make player flag types consistent * fix typo
16 lines
234 B
C++
16 lines
234 B
C++
#ifndef __EPETTAMINGNOTIFYTYPE__H__
|
|
#define __EPETTAMINGNOTIFYTYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class ePetTamingNotifyType : uint32_t {
|
|
SUCCESS,
|
|
QUIT,
|
|
FAILED,
|
|
BEGIN,
|
|
READY,
|
|
NAMINGPET
|
|
};
|
|
|
|
#endif //!__EPETTAMINGNOTIFYTYPE__H__
|