Reverted 91c1517 and reinserted the old mouse cursor code
[supertux.git] / src / gui / mousecursor.hpp
index 329f225..30afd56 100644 (file)
@@ -19,7 +19,6 @@
 
 #include <string>
 
-#include "math/vector.hpp"
 #include "video/surface_ptr.hpp"
 
 #define MC_STATES_NB 3
@@ -32,7 +31,6 @@ enum {
 };
 
 class DrawingContext;
-class Vector;
 
 /// Mouse cursor.
 /** Used to create mouse cursors.
@@ -56,9 +54,6 @@ public:
   /** Useful for cross mouse cursor images in example. */
   void set_mid(int x, int y);
 
-  /** Set the position where the cursor should appear */
-  void set_pos(const Vector& pos);
-
   /// Draw MouseCursor on screen.
   void draw(DrawingContext& context);
 
@@ -72,7 +67,6 @@ public:
   friend class Resources;
 
 private:
-  Vector mouse_pos;
   int mid_x;
   int mid_y;
   int state_before_click;