pmc/include/drawable.h
changeset 45 7197576fedcf
parent 43 cf8c1b5127b2
child 54 c064ce9f40f5
--- a/pmc/include/drawable.h
+++ b/pmc/include/drawable.h
@@ -11,12 +11,12 @@
 
 class Drawable:public Object {
   protected:
-    Vector anker;
+    algebra::Vector anker;
     Surface *surface;
 
   public:
-    virtual ~ Drawable () {};
-    virtual void move (Vector) = 0;
+    virtual ~ Drawable () { };
+    virtual void move (algebra::Vector) = 0;
     virtual void show () = 0;
 };
 #endif