make it possible to put background images in each layer
[supertux.git] / src / badguy / mrbomb.h
1 #ifndef __MRBOMB_H__
2 #define __MRBOMB_H__
3
4 #include "badguy.h"
5
6 class MrBomb : public BadGuy
7 {
8 public:
9   MrBomb(LispReader& reader);
10
11   void activate();
12   void write(LispWriter& writer);
13   HitResponse collision_solid(GameObject& other, const CollisionHit& hit);
14
15 protected:
16   bool collision_squished(Player& player);
17 };
18
19 #endif
20