Removed O.* files for old object descriptors
[sdlbotor.git] / LivingMapObject.h
blobd88c88380a0314ecc369dfda0d48d39593e30e19
1 #ifndef LIVINGMAPOBJECT_H
2 #define LIVINGMAPOBJECT_H
4 #include "MapObject.h"
6 namespace botor
9 class LivingMapObject : public MapObject
11 private:
13 bool alive;
15 public:
17 LivingMapObject( Uint8 X = 0, Uint8 Y = 0, Drawable *graphic = 0 );
18 virtual ~LivingMapObject( );
20 virtual void OnDead();
22 //virtual void Draw();
24 bool isAlive();
26 void Die();
28 void Reanimate();
34 #endif