* Peek in X and Y direction at the same time.
[supertux.git] / src / object / oneup.cpp
index 3ce81fa..322cb23 100644 (file)
@@ -24,6 +24,8 @@
 #include "player.hpp"
 #include "player_status.hpp"
 #include "sector.hpp"
+#include "level.hpp"
+#include "statistics.hpp"
 #include "video/drawing_context.hpp"
 
 OneUp::OneUp(const Vector& pos, Direction direction)
@@ -38,7 +40,7 @@ OneUp::update(float elapsed_time)
   if(!Sector::current()->inside(bbox))
     remove_me();
 
-  movement = physic.get_movement(elapsed_time); 
+  movement = physic.get_movement(elapsed_time);
 }
 
 HitResponse
@@ -47,9 +49,12 @@ OneUp::collision(GameObject& other, const CollisionHit& )
   Player* player = dynamic_cast<Player*> (&other);
   if(player) {
     player->get_status()->add_coins(100);
+#if 0
+    // FIXME: do we want this? q.v. src/level.cpp
+    Sector::current()->get_level()->stats.coins += 100;
+#endif
     remove_me();
     return ABORT_MOVE;
   }
   return FORCE_MOVE;
 }
-