Danbias/Code/Game/GameLogic/StaticObject.h

35 lines
926 B
C
Raw Normal View History

2013-11-28 08:33:29 +01:00
//////////////////////////////////////////////////
//Created by Erik and Linda of the GameLogic team
//////////////////////////////////////////////////
#ifndef STATICOBJECT_H
#define STATICOBJECT_H
#include "Object.h"
2014-02-12 14:48:58 +01:00
namespace GameLogic
{
class StaticObject : public Object
{
public:
2013-12-05 11:50:39 +01:00
StaticObject();
2014-02-12 14:48:58 +01:00
StaticObject(ObjectSpecialType type);
StaticObject(Oyster::Physics::ICustomBody *rigidBody, ObjectSpecialType type);
StaticObject( void* collisionFuncAfter, ObjectSpecialType type);
StaticObject(Oyster::Physics::ICustomBody *rigidBody , void* collisionFuncAfter, ObjectSpecialType type);
StaticObject(Oyster::Physics::ICustomBody *rigidBody , Oyster::Physics::ICustomBody::SubscriptMessage (*collisionFuncAfter)(Oyster::Physics::ICustomBody *proto,Oyster::Physics::ICustomBody *deuter,Oyster::Math::Float kineticEnergyLoss), ObjectSpecialType type);
~StaticObject(void);
2013-12-05 11:50:39 +01:00
private:
};
}
#endif