fixed a couple of nolok's minor bugs
[supertux.git] / src / badguy / snowball.h
1 #ifndef __SNOWBALL_H__
2 #define __SNOWBALL_H__
3
4 #include "badguy.h"
5
6 class SnowBall : public BadGuy
7 {
8 public:
9   SnowBall(LispReader& reader);
10   SnowBall(float pos_x, float pos_y);
11
12   void activate();
13   void write(LispWriter& writer);
14   HitResponse collision_solid(GameObject& other, const CollisionHit& hit);
15   
16 protected:
17   bool collision_squished(Player& player);
18 };
19
20 #endif
21