- added quick&dirty peeking back (not exactly perfect, but better then no peeking)
[supertux.git] / src / object / path_walker.hpp
index f3bdf9e..829eca1 100644 (file)
@@ -50,6 +50,11 @@ public:
   /** stop advancing automatically */
   void stop_moving();
 
+  /** returns true if PathWalker is currently moving */
+  bool is_moving() {
+    return running;
+  }
+  
   const Path* path;
 
 private: