Danbias/Code/Game/GameLogic/DynamicObject.h

29 lines
392 B
C
Raw Normal View History

2013-11-28 08:33:29 +01:00
//////////////////////////////////////////////////
//Created by Erik and Linda of the GameLogic team
//////////////////////////////////////////////////
#ifndef DYNAMICOBJECT_H
#define DYNAMICOBJECT_H
namespace GameLogic
{
2013-11-26 11:32:00 +01:00
2013-12-05 11:50:39 +01:00
class DynamicObject
{
public:
2013-12-05 11:50:39 +01:00
DynamicObject();
~DynamicObject(void);
2013-11-28 08:33:29 +01:00
void Update();
2013-12-05 11:50:39 +01:00
private:
struct PrivateData;
PrivateData *myData;
};
}
#endif