mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-02-06 03:42:11 +08:00
18 lines
460 B
C++
18 lines
460 B
C++
#define GAC_HEADER_USE_NAMESPACE
|
|
#include "UI/Source/Demo.h"
|
|
#include <Windows.h>
|
|
|
|
using namespace vl::collections;
|
|
using namespace vl::stream;
|
|
|
|
void GuiMain()
|
|
{
|
|
{
|
|
FileStream fileStream(L"../UIRes/Responsive1.bin", FileStream::ReadOnly);
|
|
auto resource = GuiResource::LoadPrecompiledBinary(fileStream);
|
|
GetResourceManager()->SetResource(L"Resource", resource);
|
|
}
|
|
demo::MainWindow window;
|
|
window.MoveToScreenCenter();
|
|
GetApplication()->Run(&window);
|
|
} |