-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphicsSandbox.cpp
More file actions
31 lines (28 loc) · 833 Bytes
/
GraphicsSandbox.cpp
File metadata and controls
31 lines (28 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "Scene.h"
int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
_In_opt_ HINSTANCE hPrevInstance,
_In_ LPWSTR lpCmdLine,
_In_ int nCmdShow)
{
std::shared_ptr<Scene> app = std::shared_ptr<Scene>(new Scene(hInstance));
app->Title = L"GraphicsSandbox";
app->WindowWidth = 1920;
app->WindowHeight = 1080;
app->Initialize();
app->Run();
}
/*
#include "VRScene.h"
int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
_In_opt_ HINSTANCE hPrevInstance,
_In_ LPWSTR lpCmdLine,
_In_ int nCmdShow)
{
std::shared_ptr<VRScene> app = std::shared_ptr<VRScene>(new VRScene(hInstance));
app->Title = L"VRGraphicsSandbox";
app->WindowWidth = 1920;
app->WindowHeight = 1080;
app->Initialize();
app->Run();
}
*/