|
Last change
on this file since 3770 was
3407,
checked in by dave, 21 years ago
|
|
branches/dave/src: Hab skybox.cc und skybox.h geschreieben→enjoy, ich hoffe es funktioniert so
|
|
File size:
910 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 | typedef unsigned char byte; |
|---|
| 14 | |
|---|
| 15 | // this includes the information from configure/makefiles |
|---|
| 16 | #if HAVE_CONFIG_H |
|---|
| 17 | #include <config.h> |
|---|
| 18 | #endif |
|---|
| 19 | |
|---|
| 20 | #ifdef __WIN32__ |
|---|
| 21 | #include <windows.h> |
|---|
| 22 | #endif |
|---|
| 23 | |
|---|
| 24 | #ifndef __APPLE__ |
|---|
| 25 | #include <SDL/SDL.h> |
|---|
| 26 | #include <GL/gl.h> |
|---|
| 27 | #include <GL/glu.h> |
|---|
| 28 | |
|---|
| 29 | #else |
|---|
| 30 | #include <SDL.h> |
|---|
| 31 | #include <OpenGL/gl.h> |
|---|
| 32 | #include <OpenGL/glu.h> |
|---|
| 33 | #endif |
|---|
| 34 | |
|---|
| 35 | #include "vector.h" |
|---|
| 36 | #include "matrix.h" |
|---|
| 37 | #include "curve.h" |
|---|
| 38 | //#include "coordinates.h" |
|---|
| 39 | #include "list.h" |
|---|
| 40 | #include "list_template.h" |
|---|
| 41 | #include "error.h" |
|---|
| 42 | #include "debug.h" |
|---|
| 43 | #include "message_structures.h" |
|---|
| 44 | #include "orxonox.h" |
|---|
| 45 | #include "data_tank.h" |
|---|
| 46 | #include "base_object.h" |
|---|
| 47 | |
|---|
| 48 | #endif /* _STDINCL_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.