2012-03-20 01:57:42 +01:00
|
|
|
#ifndef _LC_GLOBAL_H_
|
|
|
|
#define _LC_GLOBAL_H_
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "defines.h"
|
|
|
|
|
|
|
|
// Check for supported platforms.
|
|
|
|
#if !defined(LC_WINDOWS) && !defined(LC_LINUX)
|
|
|
|
#error No OS defined.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Precompiled headers.
|
|
|
|
#if LC_WINDOWS
|
|
|
|
#include "stdafx.h"
|
|
|
|
#endif
|
|
|
|
|
2012-03-23 00:44:56 +01:00
|
|
|
// Forward declarations.
|
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-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_
|