Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4447 in orxonox.OLD


Ignore:
Timestamp:
Jun 1, 2005, 10:37:07 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: made orxonox.cc a littel nicer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/orxonox.h

    r4446 r4447  
    2121class Orxonox : public EventListener {
    2222
    23 
    2423 public:
    2524  static Orxonox* getInstance ();
     
    3332
    3433 private:
     34  Orxonox ();
     35
    3536  int initVideo ();
    3637  int initSound ();
     
    4243
    4344 private:
    44   static Orxonox* singletonRef;
    45   Orxonox ();
     45  static Orxonox*   singletonRef;            //!< singleton reference to orxonox
    4646
    47   char configfilename[256];   //!< Filename of the configuration-file.
    48   GameLoader* gameLoader;     //!< The gameLoader
    49   ResourceManager* resourceManager; //!< The ResourceManager
    50   ObjectManager* objectManager; //!< the object manager of the game
    51   EventHandler* eventHandler;
     47  char              configfilename[256];     //!< Filename of the configuration-file.
     48  GameLoader*       gameLoader;              //!< The gameLoader
     49  ResourceManager*  resourceManager;        //!< The ResourceManager
     50  ObjectManager*    objectManager;          //!< the object manager of the game
     51  EventHandler*     eventHandler;            //!< the eventhandler of orxonox is created here
    5252 
    53   unsigned int argc;          //!< Count of Arguments of orxonox
    54   char** argv;                //!< Values of th Arguments of orxonox.
     53  unsigned int      argc;                    //!< Count of Arguments of orxonox
     54  char**            argv;                    //!< Values of th Arguments of orxonox.
    5555};
     56
     57
     58
    5659
    5760int startHelp(int argc, char** argv);
Note: See TracChangeset for help on using the changeset viewer.