Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1850 in orxonox.OLD for orxonox/trunk/core/orxonox.h


Ignore:
Timestamp:
Apr 21, 2004, 1:11:19 AM (21 years ago)
Author:
patrick
Message:

orxonox/trunk: new Makfile, orxonox with window, data_tank added

File:
1 edited

Legend:

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

    r1803 r1850  
    22#define ORXONOX_H
    33
     4#define NULL 0
     5
    46class Orxonox {
    57
     8 private:
     9  static Orxonox *singleton_ref;
     10  Orxonox ();
     11  ~Orxonox ();
     12
    613 public:
    7   Orxonox();
    8   ~Orxonox();
    914
    10   int globalInit(int argc, char** argv);
    11   int menuInit();
    12   int gameInit();
     15  static Orxonox* getInstance (void);
    1316
     17  int globalInit (int argc, char** argv);
     18  int menuInit (void);
     19  int gameInit (void);
     20  static void display (void);
     21  static void reshape (int w, int h);
    1422};
    1523
    1624#endif
     25
Note: See TracChangeset for help on using the changeset viewer.