home *** CD-ROM | disk | FTP | other *** search
- #ifndef __ObjectiveGL2__
- #define __ObjectiveGL2__
-
- #ifndef __cplusplus
- #error This program requires a C++ compiler
- #endif
-
- #ifdef WIN32
- #include <windows.h>
- #endif
-
- #ifndef WIN32
- #define APIENTRY
- #define CALLBACK
- #endif
-
- #ifndef PI
- #define PI 3.14159265358979324
- #endif
-
- #include <GL/gl.h>
- #include "glext.h"
-
- #include "String.h"
- #include "types.h"
- #include "dynamic.h"
- #include "switchers.h"
- #include "image.h"
-
- #include "entity.h"
- #include "hierarchy.h"
- #include "light.h"
- #include "texture.h"
- #include "material.h"
- #include "camera.h"
-
- #include "boundingbox.h"
-
- #endif
-
-