#303: Typo fixes from mathnerd314
[supertux.git] / src / scripting / willowisp.hpp
index fb1be12..93ef0d9 100644 (file)
@@ -34,13 +34,17 @@ public:
   /** Move willowisp to given node */
   virtual void goto_node(int node_no) = 0;
 
-  /** set willowisp state can be:
+  /** set willowisp state; can be:
    * -stopped          willowisp doesn't move
    * -move_path        willowisp moves along the path (call goto_node)
-   * -move_path_track  willowisp moves along path but catchs tux when he is near
+   * -move_path_track  willowisp moves along path but catches tux when he is near
    * -normal           "normal" mode starts tracking tux when he is near enough
+   * -vanish           vanish
    */
   virtual void set_state(const std::string& state) = 0;
+
+  virtual void start_moving() = 0;
+  virtual void stop_moving() = 0;
 };
 
 }