The BIG COMMIT(tm)
[supertux.git] / src / badguy / bouncing_snowball.h
1 #ifndef __BOUNCING_SNOWBALL_H__
2 #define __BOUNCING_SNOWBALL_H__
3
4 #include "badguy.h"
5
6 class BouncingSnowball : public BadGuy
7 {
8 public:
9   BouncingSnowball(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