Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2104 in orxonox.OLD for orxonox/branches/chris/src/orxonox.h


Ignore:
Timestamp:
Jul 10, 2004, 3:07:42 PM (21 years ago)
Author:
chris
Message:

orxonox/branches/chris: This code compiles and links but is still missing the SDL libraries.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/chris/src/orxonox.h

    r2100 r2104  
    2020  ~Orxonox ();
    2121 
    22   static char configfilename[256];
    23   static World* world;
    24   static DataTank* resources;
    25   static CommandNode* localinput;
    26   static Camera* localcamera;
    27   static SDL_Surface* screen;
     22  char configfilename[256];
     23  World* world;
     24  DataTank* resources;
     25  CommandNode* localinput;
     26  Camera* localcamera;
     27  SDL_Surface* screen;
    2828 
    29   static bool bQuitOrxonox;
    30   static bool pause;
    31         static Uint32 lastframe;
     29  bool bQuitOrxonox;
     30  bool pause;
     31        Uint32 lastframe;
    3232
    33         static void get_config_file (int argc, char** argv);
     33        void get_config_file (int argc, char** argv);
    3434       
    3535                // main loop functions
    36   static void synchronize ();
    37   static void handle_input ();
    38   static void time_slice ();
    39   static void collision ();
    40   static void display ();
     36  void synchronize ();
     37  void handle_input ();
     38  void time_slice ();
     39  void collision ();
     40  void display ();
    4141 
    4242        // subsystem initialization
     
    5050 public:
    5151  static Orxonox* getInstance ();
    52   static void quitGame();
     52  void quitGame();
    5353
    54   static void event_handler (SDL_Event* event);
     54  void event_handler (SDL_Event* event);
    5555
    5656  int init (int argc, char** argv);
Note: See TracChangeset for help on using the changeset viewer.