Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 6, 2008, 4:45:49 PM (16 years ago)
Author:
scheusso
Message:

some changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/Orxonox.h

    r790 r868  
    2727    STANDALONE,
    2828    SERVER,
    29     CLIENT,
    30     PRESENTATION
     29    CLIENT
    3130  };
    3231
     32  union OrxListener{
     33    OrxListenerClient *client;
     34    OrxListenerServer *server;
     35    OrxListenerStandalone *standalone;
     36  };
     37 
    3338  class _OrxonoxExport Orxonox
    3439  {
     
    5055      virtual ~Orxonox();
    5156      // init functions
     57      void startStandalone();
     58      void startServer();
     59      void startClient();
    5260      void serverInit(std::string path);
    5361      void clientInit(std::string path);
     
    7684      OIS::Mouse*           mouse_;
    7785      OIS::InputManager*    inputManager_;
    78       OrxListener*          frameListener_;
     86      OrxListener          frameListener_;
    7987      Ogre::Root*           root_;
    8088
Note: See TracChangeset for help on using the changeset viewer.