mirror of https://github.com/AxioDL/metaforce.git
18 lines
245 B
C++
18 lines
245 B
C++
|
#ifndef __URDE_CGUIGROUP_HPP__
|
||
|
#define __URDE_CGUIGROUP_HPP__
|
||
|
|
||
|
#include "CGuiCompoundWidget.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CGuiGroup : public CGuiCompoundWidget
|
||
|
{
|
||
|
public:
|
||
|
static void LoadWidgetFnMap();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CGUIGROUP_HPP__
|