- Made miniswig support HSQUIRRELVM arguments (and realized it was not needed
[supertux.git] / src / object / unstable_tile.h
index 90cab4e..f6ffb96 100644 (file)
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //  02111-1307, USA.
-
 #ifndef __UNSTABLE_TILE_H__
 #define __UNSTABLE_TILE_H__
 
 #include "moving_object.h"
 #include "lisp/lisp.h"
-#include "math/physic.h"
+#include "physic.h"
 #include "timer.h"
 
 class Sprite;
 class Player;
 
-using namespace SuperTux;
-
 /** A tile that starts falling down if tux stands to long on it */
 class UnstableTile : public MovingObject
 {
@@ -45,7 +42,7 @@ public:
 private:
   Physic physic;
   Sprite* sprite;
-  Timer2 timer;
+  Timer timer;
   bool hit;
   bool falling;
 };