feat(ui): add CGPetInfo

This commit is contained in:
fallenoak 2026-02-02 16:45:58 -06:00
parent 953fb372d8
commit 71b7b159de
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
3 changed files with 20 additions and 0 deletions

View File

@ -2,5 +2,6 @@
#define UI_GAME_HPP #define UI_GAME_HPP
#include "ui/game/CGGameUI.hpp" #include "ui/game/CGGameUI.hpp"
#include "ui/game/CGPetInfo.hpp"
#endif #endif

View File

@ -0,0 +1,6 @@
#include "ui/game/CGPetInfo.hpp"
WOWGUID CGPetInfo::GetPet(uint32_t index) {
// TODO
return 0;
}

13
src/ui/game/CGPetInfo.hpp Normal file
View File

@ -0,0 +1,13 @@
#ifndef UI_GAME_C_G_PET_INFO_HPP
#define UI_GAME_C_G_PET_INFO_HPP
#include "util/GUID.hpp"
#include <cstdint>
class CGPetInfo {
public:
// Static functions
static WOWGUID GetPet(uint32_t index);
};
#endif