Major rewrite of scripting support:
[supertux.git] / src / object / powerup.hpp
index 99d522a..f7b6567 100644 (file)
@@ -37,9 +37,11 @@ public:
   virtual HitResponse collision(GameObject& other, const CollisionHit& hit);
   
 private:
+  std::string sprite_name;
   Sprite* sprite;
   Physic physic;
   std::string script;
+  bool no_physics;
 };
 
 #endif