From 356efaf89afdad141b313767e1a2b89de3c08d0a Mon Sep 17 00:00:00 2001 From: neoraider Date: Sun, 6 Apr 2008 13:29:03 +0000 Subject: zoomedit: Recreated ZoomEdit based on Glademm. --- LevelObject.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 LevelObject.h (limited to 'LevelObject.h') diff --git a/LevelObject.h b/LevelObject.h deleted file mode 100644 index 50f470e..0000000 --- a/LevelObject.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef LEVELOBJECT_H_ -#define LEVELOBJECT_H_ - -#include "Object.h" -#include "Vertex.h" -#include - - -class LevelObject : public Object { - private: - LevelObject *parent; - - public: - LevelObject(LevelObject *p = NULL) : parent(p) {} - virtual ~LevelObject() {} - - LevelObject* getParent() const { - return parent; - } - - virtual std::vector > getChildren() { - return std::vector >(); - } - - virtual bool hit(const Vertex &v) const {return false;} - virtual bool hit(const Vertex &v, float scale) const {return hit(v);}; - virtual int getPriority() const {return 0;} - - virtual bool canMove() const {return false;} - virtual void move(float x, float y) {} - virtual bool canRotate() const {return false;} - virtual void rotate(Vertex m, float a) {} -}; - -#endif /*LEVELOBJECT_H_*/ -- cgit v1.2.3