thunderbrew/src/gameui/CGQuestPOIFrame.hpp

25 lines
613 B
C++
Raw Normal View History

#ifndef GAME_UI_CGQUEST_POI_FRAME_HPP
#define GAME_UI_CGQUEST_POI_FRAME_HPP
#include "ui/CSimpleFrame.hpp"
#include "ui/CSimpleTop.hpp"
class CGQuestPOIFrame : public CSimpleFrame {
public:
// Static variables
static int32_t s_metatable;
// Static functions
static CSimpleFrame* Create(CSimpleFrame* parent);
static void CreateScriptMetaTable();
static void RegisterScriptMethods(lua_State* L);
// Virtual member functions
virtual int32_t GetScriptMetaTable();
// Member functions
CGQuestPOIFrame(CSimpleFrame* parent);
};
#endif // GAME_UI_CGQUEST_POI_FRAME_HPP