mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-05 15:42:17 +03:00
feat(ui): add CGPetInfo
This commit is contained in:
parent
953fb372d8
commit
71b7b159de
@ -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
|
||||||
|
|||||||
6
src/ui/game/CGPetInfo.cpp
Normal file
6
src/ui/game/CGPetInfo.cpp
Normal 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
13
src/ui/game/CGPetInfo.hpp
Normal 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
|
||||||
Loading…
Reference in New Issue
Block a user