summaryrefslogtreecommitdiffstats
path: root/src/physics/physics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/physics/physics.h')
-rw-r--r--src/physics/physics.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/physics/physics.h b/src/physics/physics.h
index db88e8c..cce57f3 100644
--- a/src/physics/physics.h
+++ b/src/physics/physics.h
@@ -30,21 +30,19 @@
#include "math/vector.h"
-class CInstanceManager;
class CObject;
class CBrain;
class CMotion;
class CSoundInterface;
-namespace Gfx
-{
+namespace Gfx {
class CCamera;
class CEngine;
class CLight;
class CParticle;
class CTerrain;
class CWater;
-};
+}
enum PhysicsType
@@ -97,7 +95,7 @@ struct Motion
class CPhysics
{
public:
- CPhysics(CInstanceManager* iMan, CObject* object);
+ CPhysics(CObject* object);
~CPhysics();
void DeleteObject(bool bAll=false);
@@ -195,7 +193,6 @@ protected:
void WheelParticle(int color, float width);
protected:
- CInstanceManager* m_iMan;
Gfx::CEngine* m_engine;
Gfx::CLightManager* m_lightMan;
Gfx::CParticle* m_particle;