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 >
Wrap
C/C++ Source or Header
|
2000-08-07
|
614b
|
41 lines
#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