#define GAC_HEADER_USE_NAMESPACE #include "UI/Source/Demo.h" #include using namespace vl::collections; using namespace vl::stream; int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int CmdShow) { return SetupWindowsDirect2DRenderer(); } void GuiMain() { { FileStream fileStream(L"../UIRes/Stack.bin", FileStream::ReadOnly); auto resource = GuiResource::LoadPrecompiledBinary(fileStream); GetResourceManager()->SetResource(L"Resource", resource); } demo::MainWindow window; window.MoveToScreenCenter(); GetApplication()->Run(&window); }