mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 10:27:40 +00:00
21
include/GuiSys/CGuiFrame.hpp
Normal file
21
include/GuiSys/CGuiFrame.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef _CGUIFRAME
|
||||
#define _CGUIFRAME
|
||||
|
||||
#include "rstl/string.hpp"
|
||||
|
||||
class CGuiWidget;
|
||||
class CGuiCamera;
|
||||
|
||||
class CGuiFrame {
|
||||
public:
|
||||
CGuiWidget* FindWidget(const char* name) const;
|
||||
CGuiWidget* FindWidget(const rstl::string& name) const;
|
||||
|
||||
CGuiCamera* GetFrameCamera() const { return x14_camera; }
|
||||
|
||||
private:
|
||||
char x0_pad[0x14];
|
||||
CGuiCamera* x14_camera;
|
||||
};
|
||||
|
||||
#endif // _CGUIFRAME
|
||||
Reference in New Issue
Block a user