src/Rope.hh
branchnew_graphics
changeset 412 721c60072091
parent 328 51d644c8d5a2
child 417 c503e0c6a740
--- a/src/Rope.hh	Wed Jan 21 03:33:35 2009 +0200
+++ b/src/Rope.hh	Wed Jan 21 23:07:22 2009 +0200
@@ -7,7 +7,8 @@
 
 #include "Player.hh"
 #include "PhysicsObject.hh"
-#include "GraphicsPointer.hh"
+
+#include "Graphics/Drawable.hh"
 
 /**
  * The rope can be in one of three states...
@@ -84,9 +85,9 @@
     virtual void tick (TimeMS dt);
 
     /*
-     * Just draws it
+     * Draw the rope, in the FLYING/FIXED state
      */ 
-    virtual void draw (Graphics *c, PixelCoordinate camera);
+    virtual void draw (graphics::Display &display, PixelCoordinate camera);
 };
 
 #endif