Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto/include/OrxonoxScene.h @ 123

Last change on this file since 123 was 123, checked in by rgrieder, 17 years ago
File size: 617 bytes
Line 
1#ifndef __DemoScene__
2#define __DemoScene__
3
4#include "Ogre.h"
5
6using namespace Ogre;
7
8class OrxonoxScene
9{
10public:
11        OrxonoxScene(SceneManager*);
12
13        virtual ~OrxonoxScene();
14
15        virtual bool initialise();
16
17        virtual void tick(unsigned long, float);
18
19private:
20        SceneManager* mSceneMgr;
21
22        //specific variables for test purposes
23        Light        *mLight;
24        SceneNode    *lightNode;
25        BillboardSet *bbs;
26        float distance, radius;
27
28        /// method where you can perform resource group loading
29        virtual void loadResources(void);
30
31        // Define what is in the scene
32        virtual void createScene(void);
33};
34#endif
Note: See TracBrowser for help on using the repository browser.