leocad/common/lc_global.h

39 lines
625 B
C
Raw Normal View History

2013-08-09 06:57:18 +02:00
#ifndef _LC_GLOBAL_H_
#define _LC_GLOBAL_H_
#include "lc_config.h"
// Version number.
#define LC_VERSION_MAJOR 0
#define LC_VERSION_MINOR 80
2014-04-06 23:44:58 +02:00
#define LC_VERSION_PATCH 4
#define LC_VERSION_TEXT "0.80.4"
2013-08-09 06:57:18 +02:00
// Forward declarations.
2014-05-01 20:42:11 +02:00
class lcObject;
class lcPiece;
class lcCamera;
class lcLight;
typedef lcObject Object;
typedef lcPiece Piece;
typedef lcCamera Camera;
typedef lcLight Light;
2013-08-09 06:57:18 +02:00
class lcVector2;
class lcVector3;
class lcVector4;
class lcMatrix44;
2014-04-14 05:20:16 +02:00
class lcContext;
2013-08-09 06:57:18 +02:00
class lcMesh;
2014-04-14 05:20:16 +02:00
struct lcMeshSection;
2014-04-20 03:50:41 +02:00
struct lcRenderMesh;
2013-08-09 06:57:18 +02:00
class lcTexture;
class lcFile;
class lcMemFile;
class lcDiskFile;
#endif // _LC_GLOBAL_H_