pmc/include/drawable.h
changeset 65 76514757b0d6
parent 64 993b97c4ad2d
child 66 2b4f786d9073
deleted file mode 100644
--- a/pmc/include/drawable.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * test/demos/pmc/include/drawable.h
- * Copyright (C) 2008 Markus Broeker
- */
-
-#ifndef DRAWABLE_H
-#define DRAWABLE_H
-
-#include <surface.h>
-#include <vector.h>
-
-class Drawable:public Object {
-  protected:
-    algebra::Vector anker;
-    Surface *surface;
-
-  public:
-    virtual ~ Drawable () { };
-
-    virtual void move (algebra::Vector) = 0;
-    virtual void show () = 0;
-};
-#endif