Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 3184 was 3184, checked in by bensch, 19 years ago

orxonox/trunk: osX-compatibility

File size: 426 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
11#ifndef __APPLE__
12#include <SDL/SDL.h>
13#include <GL/gl.h>
14#include <GL/glu.h>
15#else
16#include <SDL.h>
17#include <OpenGL/gl.h>
18#include <OpenGL/glu.h>
19#endif
20
21#include "vector.h"
22#include "coordinates.h"
23#include "list.h"
24#include "list_template.h"
25#include "error.h"
26#include "message_structures.h"
27#include "orxonox.h"
28
29#endif
Note: See TracBrowser for help on using the repository browser.