20 lines
203 B
C
20 lines
203 B
C
|
#ifndef STATICOBJECT_H
|
||
|
#define STATICOBJECT_H
|
||
|
|
||
|
#include "Object.h"
|
||
|
|
||
|
namespace GameLogic
|
||
|
{
|
||
|
|
||
|
class StaticObject : public Object
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
StaticObject(void);
|
||
|
~StaticObject(void);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|