mirror of https://github.com/PrimeDecomp/prime.git
parent
b7a44f2040
commit
19d581261e
|
@ -420,7 +420,7 @@ LIBS = [
|
||||||
"cflags": "$cflags_retro",
|
"cflags": "$cflags_retro",
|
||||||
"host": True,
|
"host": True,
|
||||||
"objects": [
|
"objects": [
|
||||||
"GuiSys/CAuiMain",
|
["GuiSys/CAuiMain", True],
|
||||||
"GuiSys/CAuiMeter",
|
"GuiSys/CAuiMeter",
|
||||||
"GuiSys/CGuiGroup",
|
"GuiSys/CGuiGroup",
|
||||||
"GuiSys/CGuiHeadWidget",
|
"GuiSys/CGuiHeadWidget",
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _CAUIMAIN
|
||||||
|
#define _CAUIMAIN
|
||||||
|
|
||||||
|
class CGuiSys;
|
||||||
|
|
||||||
|
bool InitializeApplicationUI(CGuiSys&);
|
||||||
|
|
||||||
|
#endif // _CAUIMAIN
|
|
@ -0,0 +1,5 @@
|
||||||
|
#include "GuiSys/CAuiMain.hpp"
|
||||||
|
|
||||||
|
bool InitializeApplicationUI(CGuiSys&) {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue