aboutsummaryrefslogtreecommitdiff
path: root/examples/Demo/CMainMenu.h
diff options
context:
space:
mode:
authorhecks <42101236+hecktest@users.noreply.github.com>2021-07-23 16:23:44 +0200
committerGitHub <noreply@github.com>2021-07-23 16:23:44 +0200
commit4ab3de3bab13c18bc0eed6bac565be3b80ebac10 (patch)
tree54274982be545669f28b2849f5f94aa1c37f39af /examples/Demo/CMainMenu.h
parentdc2246dae75dda77d5a9be7f810930b5dd9b1ed8 (diff)
downloadirrlicht-4ab3de3bab13c18bc0eed6bac565be3b80ebac10.tar.xz
Delete lots of unused features (#48)
Diffstat (limited to 'examples/Demo/CMainMenu.h')
-rw-r--r--examples/Demo/CMainMenu.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/Demo/CMainMenu.h b/examples/Demo/CMainMenu.h
deleted file mode 100644
index 6a3dd35..0000000
--- a/examples/Demo/CMainMenu.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// This is a Demo of the Irrlicht Engine (c) 2005 by N.Gebhardt.
-// This file is not documentated.
-
-#ifndef __C_MAIN_MENU_H_INCLUDED__
-#define __C_MAIN_MENU_H_INCLUDED__
-
-#include <irrlicht.h>
-
-using namespace irr;
-
-class CMainMenu : public IEventReceiver
-{
-public:
-
- CMainMenu();
-
- bool run();
-
- bool getFullscreen() const { return fullscreen; }
- bool getMusic() const { return music; }
- bool getShadows() const { return shadows; }
- bool getAdditive() const { return additive; }
- bool getVSync() const { return vsync; }
- bool getAntiAliasing() const { return aa; }
- video::E_DRIVER_TYPE getDriverType() const { return driverType; }
-
-
- virtual bool OnEvent(const SEvent& event);
-
-private:
-
- void setTransparency();
-
- gui::IGUIButton* startButton;
- IrrlichtDevice *MenuDevice;
- s32 selected;
- bool start;
- bool fullscreen;
- bool music;
- bool shadows;
- bool additive;
- bool transparent;
- bool vsync;
- bool aa;
- video::E_DRIVER_TYPE driverType;
-
- scene::IAnimatedMesh* quakeLevel;
- scene::ISceneNode* lightMapNode;
- scene::ISceneNode* dynamicNode;
-
- video::SColor SkinColor [ gui::EGDC_COUNT ];
- void getOriginalSkinColor();
-};
-
-#endif
-