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