home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 February / Chip_2001-02_cd1.bin / bonus / demos / CS / exp / SOURCES / GLENGINE / objgl2.h < prev    next >
C/C++ Source or Header  |  2000-08-07  |  614b  |  41 lines

  1. #ifndef __ObjectiveGL2__
  2. #define __ObjectiveGL2__
  3.  
  4. #ifndef __cplusplus
  5. #error This program requires a C++ compiler
  6. #endif
  7.  
  8. #ifdef WIN32
  9. #include <windows.h>
  10. #endif
  11.  
  12. #ifndef WIN32
  13. #define APIENTRY
  14. #define CALLBACK
  15. #endif
  16.  
  17. #ifndef PI
  18. #define PI 3.14159265358979324
  19. #endif
  20.  
  21. #include <GL/gl.h>
  22. #include "glext.h"
  23.  
  24. #include "String.h"
  25. #include "types.h"
  26. #include "dynamic.h"
  27. #include "switchers.h"
  28. #include "image.h" 
  29.  
  30. #include "entity.h"
  31. #include "hierarchy.h"
  32. #include "light.h"
  33. #include "texture.h"
  34. #include "material.h"
  35. #include "camera.h"
  36.  
  37. #include "boundingbox.h"
  38.  
  39. #endif
  40.  
  41.