Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/stdincl.h @ 2636

Last change on this file since 2636 was 2636, checked in by patrick, 20 years ago
  • Added a GameLoader to the game. This enables orxonox to load a campaign consisting of multimple worlds and cinematics etc. However, cinematics are not yet implemented.

In the game you can jump from one level to the other by pressing x. Currently there are only two very simple levels defined. (DEBUG_LEVEL_0, DEBUG_LEVEL_1).

  • Added Error Handling structs to signal the error source and code
File size: 303 bytes
Line 
1
2#ifndef STDINCL_H
3#define STDINCL_H
4
5#define null 0
6
7#ifdef __WIN32__
8#include <windows.h>
9#endif
10#include <SDL/SDL.h>
11#include <GL/gl.h>
12#include <GL/glu.h>
13
14#include "vector.h"
15#include "coordinates.h"
16#include "list.h"
17#include "error.h"
18#include "message_structures.h"
19#include "orxonox.h"
20
21#endif
Note: See TracBrowser for help on using the repository browser.