14 lines
176 B
Plaintext
14 lines
176 B
Plaintext
#ifndef OSG_TYPES
|
|
#define OSG_TYPES 1
|
|
|
|
namespace osg {
|
|
|
|
typedef unsigned int uint;
|
|
typedef unsigned short ushort;
|
|
typedef unsigned char uchar;
|
|
typedef uchar ubyte;
|
|
|
|
};
|
|
|
|
#endif
|