15 lines
411 B
C++
15 lines
411 B
C++
#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();
|
|
} |