summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/engine.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-07-26 21:35:04 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-07-26 21:35:04 +0200
commit045f17a274c0cd41aebd34d5759f7fe791b680e4 (patch)
tree264c6b643585ec2aac654f70e5daf0d9e1957ac5 /src/graphics/common/engine.h
parentd1fe0d2dcc30a76055d6423805f8e0108b4b64be (diff)
downloadcolobot-045f17a274c0cd41aebd34d5759f7fe791b680e4.tar.gz
colobot-045f17a274c0cd41aebd34d5759f7fe791b680e4.tar.bz2
colobot-045f17a274c0cd41aebd34d5759f7fe791b680e4.zip
Dynamic light manager
- rewrote old CLight as CLightManager
Diffstat (limited to 'src/graphics/common/engine.h')
-rw-r--r--src/graphics/common/engine.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/graphics/common/engine.h b/src/graphics/common/engine.h
index 0413816..9b6cc1f 100644
--- a/src/graphics/common/engine.h
+++ b/src/graphics/common/engine.h
@@ -45,7 +45,7 @@ class CSound;
namespace Gfx {
class CDevice;
-class CLight;
+class CLightManager;
class CText;
class CParticle;
class CWater;
@@ -843,18 +843,18 @@ protected:
void UpdateGeometry();
protected:
- CInstanceManager* m_iMan;
- CApplication* m_app;
- CSound* m_sound;
- Gfx::CDevice* m_device;
- Gfx::CText* m_text;
- Gfx::CLight* m_light;
- Gfx::CParticle* m_particle;
- Gfx::CWater* m_water;
- Gfx::CCloud* m_cloud;
- Gfx::CLightning* m_lightning;
- Gfx::CPlanet* m_planet;
- Gfx::CTerrain* m_terrain;
+ CInstanceManager* m_iMan;
+ CApplication* m_app;
+ CSound* m_sound;
+ Gfx::CDevice* m_device;
+ Gfx::CText* m_text;
+ Gfx::CLightManager* m_lightMan;
+ Gfx::CParticle* m_particle;
+ Gfx::CWater* m_water;
+ Gfx::CCloud* m_cloud;
+ Gfx::CLightning* m_lightning;
+ Gfx::CPlanet* m_planet;
+ Gfx::CTerrain* m_terrain;
bool m_wasInit;
std::string m_error;