mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 13:41:06 +03:00
14 lines
228 B
C++
14 lines
228 B
C++
#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
|