Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 3, 2007, 11:06:43 PM (16 years ago)
Author:
rgrieder
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/main_reto_vs05/include/ogre_control.h

    r157 r159  
    4848
    4949        /** Sets up the application - returns false if the user chooses to abandon configuration. */
    50         virtual bool initialise(void);
     50        virtual bool initialise();
    5151
    52         virtual Root* getRoot(void);
     52        virtual Root* getRoot();
    5353
    54         virtual RenderWindow* getRenderWindow(void);
     54        virtual RenderWindow* getRenderWindow();
    5555
    56         virtual Ogre::String getResourcePath(void);
     56        virtual Ogre::String getResourcePath();
    5757
    5858protected:
    59         Root         *mRoot;
    60         RenderWindow *mWindow;
    61         Ogre::String  mResourcePath;
    62 
    6359        /** Configures the application - returns false if the user chooses to abandon configuration. */
    6460        virtual bool configure(void);
     
    6763        virtual void setupResources(void);
    6864
     65protected:
     66        Root         *root_;
     67        RenderWindow *window_;
     68        Ogre::String  resourcePath_;
     69
    6970};
    7071
Note: See TracChangeset for help on using the changeset viewer.