Program Listing for File o3ds.h
↰ Return to documentation for file (src/o3ds/o3ds.h)
#ifndef O3DS_HEADER
#define O3DS_HEADER
#define O3DS_VERSION_MAJOR 0
#define O3DS_VERSION_MINOR 7
#define O3DS_VERSION       "0.7"
namespace O3DS
{
    static const char* version = O3DS_VERSION;
    static const int   version_major = O3DS_VERSION_MAJOR;
    static const int   version_minor = O3DS_VERSION_MINOR;
    const char* getVersion() { return version; }
}
#endif