Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk/src: merged importer into src again

File size: 647 bytes
Line 
1/*!
2  \file stdincl.h
3  \brief This file includes default headers that nearly every Class needs.
4 
5  no Class is defined here, but many headers to classes, and more general Headers like the openGL-header.
6*/
7
8#ifndef STDINCL_H
9#define STDINCL_H
10
11#define null 0   //!< null
12
13#ifdef __WIN32__
14#include <windows.h>
15#endif
16
17#ifndef __APPLE__
18#include <SDL/SDL.h>
19#include <GL/gl.h>
20#include <GL/glu.h>
21#else
22#include <SDL.h>
23#include <OpenGL/gl.h>
24#include <OpenGL/glu.h>
25#endif
26
27#include "vector.h"
28#include "coordinates.h"
29#include "list.h"
30#include "list_template.h"
31#include "error.h"
32#include "message_structures.h"
33#include "orxonox.h"
34
35#endif
Note: See TracBrowser for help on using the repository browser.