HumanRender/human_render/Main.cpp

15 lines
411 B
C++
Raw Normal View History

2024-12-19 17:46:41 +00:00
#include <Windows.h>
#include "Application/Application.h"
static int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
_In_ LPWSTR lpCmdLine, _In_ int nCmdShow) {
UNREFERENCED_PARAMETER(hInstance);
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
UNREFERENCED_PARAMETER(nCmdShow);
Application app;
return app.Loop();
}