2012-03-20 00:57:42 +00:00
|
|
|
#ifndef _LC_GLOBAL_H_
|
|
|
|
#define _LC_GLOBAL_H_
|
|
|
|
|
2012-10-20 01:14:12 +00:00
|
|
|
#include "lc_config.h"
|
2012-03-20 00:57:42 +00:00
|
|
|
#include "defines.h"
|
|
|
|
|
2012-10-20 01:14:12 +00:00
|
|
|
// Version number.
|
|
|
|
#define LC_VERSION_MAJOR 0
|
|
|
|
#define LC_VERSION_MINOR 79
|
2013-01-21 19:25:00 +00:00
|
|
|
#define LC_VERSION_PATCH 2
|
|
|
|
#define LC_VERSION_TEXT "0.79.2"
|
2012-10-20 01:14:12 +00:00
|
|
|
|
2012-03-20 00:57:42 +00:00
|
|
|
// Check for supported platforms.
|
|
|
|
#if !defined(LC_WINDOWS) && !defined(LC_LINUX)
|
|
|
|
#error No OS defined.
|
|
|
|
#endif
|
|
|
|
|
2012-03-22 23:44:56 +00:00
|
|
|
// Forward declarations.
|
2012-10-16 00:43:52 +00:00
|
|
|
class lcVector2;
|
2012-04-13 23:41:58 +00:00
|
|
|
class lcVector3;
|
|
|
|
class lcVector4;
|
2012-05-17 21:52:20 +00:00
|
|
|
class lcMatrix44;
|
2012-04-13 23:41:58 +00:00
|
|
|
|
|
|
|
class lcMesh;
|
2012-10-16 00:43:52 +00:00
|
|
|
class lcTexture;
|
2012-04-13 23:41:58 +00:00
|
|
|
|
2012-03-22 23:44:56 +00:00
|
|
|
class lcFile;
|
|
|
|
class lcMemFile;
|
|
|
|
class lcDiskFile;
|
|
|
|
|
2012-03-20 00:57:42 +00:00
|
|
|
#endif // _LC_GLOBAL_H_
|