Danbias/Code/Game/GameLogic/StaticObject.h

28 lines
390 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
{
2013-12-05 11:50:39 +01:00
class StaticObject
{
public:
2013-12-05 11:50:39 +01:00
StaticObject();
~StaticObject(void);
2013-12-05 11:50:39 +01:00
private:
struct PrivateData;
PrivateData *myData;
};
}
#endif