Update PetStatus enum to prep for bitset use

This commit is contained in:
jadebenn 2023-12-14 09:21:17 -06:00 committed by GitHub
parent 8f19aa96d3
commit f5ca142eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,11 +33,10 @@ enum class PetInteractType : uint8_t {
*/
enum PetStatus : uint32_t {
NONE,
//READY_TO_DIG,
BEING_TAMED = 0x10,
IS_NOT_WAITING = 0x20,
PLAY_SPAWN_ANIM = 0x80,
TAMEABLE = 0x4000000
BEING_TAMED = 1 << 4, //0x10,
IS_NOT_WAITING = 1 << 5, //0x20,
PLAY_SPAWN_ANIM = 1 << 7, //0x80,
TAMEABLE = 1 << 8 //0x4000000
};
enum PetEmote : int32_t {