Danbias/Code/Game/GameLogic/StaticObject.h

28 lines
417 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"
namespace GameLogic
{
class StaticObject : public Object
{
public:
2013-12-05 11:50:39 +01:00
StaticObject();
StaticObject(void* collisionFunc, OBJECT_TYPE type);
~StaticObject(void);
2013-12-05 11:50:39 +01:00
private:
};
}
#endif