diff options
author | hecks <42101236+hecktest@users.noreply.github.com> | 2021-07-23 16:23:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 16:23:44 +0200 |
commit | 4ab3de3bab13c18bc0eed6bac565be3b80ebac10 (patch) | |
tree | 54274982be545669f28b2849f5f94aa1c37f39af /examples/Demo/main.cpp | |
parent | dc2246dae75dda77d5a9be7f810930b5dd9b1ed8 (diff) | |
download | irrlicht-4ab3de3bab13c18bc0eed6bac565be3b80ebac10.tar.xz |
Delete lots of unused features (#48)
Diffstat (limited to 'examples/Demo/main.cpp')
-rw-r--r-- | examples/Demo/main.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/Demo/main.cpp b/examples/Demo/main.cpp deleted file mode 100644 index 4cef6e3..0000000 --- a/examples/Demo/main.cpp +++ /dev/null @@ -1,40 +0,0 @@ -// This is a Demo of the Irrlicht Engine (c) 2005-2009 by N.Gebhardt.
-// This file is not documented.
-
-#include <irrlicht.h>
-#ifdef _IRR_WINDOWS_
-#include <windows.h>
-#endif
-
-#include <stdio.h>
-
-#include "CMainMenu.h"
-#include "CDemo.h"
-
-using namespace irr;
-
-#ifdef _MSC_VER
-
-#pragma comment(lib, "Irrlicht.lib")
-INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )
-#else
-int main(int argc, char* argv[])
-#endif
-{
- CMainMenu menu;
-
- if (menu.run())
- {
- CDemo demo(menu.getFullscreen(),
- menu.getMusic(),
- menu.getShadows(),
- menu.getAdditive(),
- menu.getVSync(),
- menu.getAntiAliasing(),
- menu.getDriverType());
- demo.run();
- }
-
- return 0;
-}
-
|