Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 6, 2004, 10:50:39 PM (21 years ago)
Author:
patrick
Message:

orxonox/trunk: play the square - its possible now…

File:
1 edited

Legend:

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

    r1859 r1872  
    11
    2 #include "world.h"
     2
    33
    44#ifndef ORXONOX_H
    55#define ORXONOX_H
    66
    7 #define NULL 0
     7/* standard headers */
     8#include <iostream>
     9#include <cstdio>
     10
     11/* openGL Headers */
     12#include <GL/glut.h>
     13
     14#include "world.h"
     15#include "input_output.h"
     16#include "data_tank.h"
     17#include "stdincl.h"
     18
     19
    820
    921class Orxonox {
    1022
    1123 private:
    12   static Orxonox *singleton_ref;
     24  static Orxonox* singleton_ref;
    1325  Orxonox ();
    1426  ~Orxonox ();
     27  static World* world;
     28  static InputOutput* io;
     29  static bool pause;
    1530
    1631 public:
     
    2136  int menuInit (void);
    2237  int gameInit (void);
     38  void testTheShit(void);
    2339  static void display (void);
     40  static void continousRedraw(void);
    2441  static void reshape (int w, int h);
    2542  static void keyboard(unsigned char key, int x, int y);
Note: See TracChangeset for help on using the changeset viewer.