mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
initial dig functionality; need to clean up kruft
This commit is contained in:
18
dCommon/dEnums/ePetStatus.h
Normal file
18
dCommon/dEnums/ePetStatus.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef __EPETSTATUS__H__
|
||||
#define __EPETSTATUS__H__
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
enum ePetStatus : uint32_t {
|
||||
NONE,
|
||||
UNKNOWN1 = 0x1,
|
||||
UNKNOWN2 = 0x2,
|
||||
UNKNOWN3 = 0x4,
|
||||
UNKNOWN4 = 0x8,
|
||||
BEING_TAMED = 0x10,
|
||||
IS_NOT_WAITING = 0x20, // Right name? - used to be decimal 20
|
||||
PLAY_SPAWN_ANIM = 0x80,
|
||||
TAMEABLE = 0x4000000
|
||||
};
|
||||
|
||||
#endif //!__EPETSTATUS__H__
|
Reference in New Issue
Block a user