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. --- PlayerStart.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 PlayerStart.h (limited to 'PlayerStart.h') diff --git a/PlayerStart.h b/PlayerStart.h deleted file mode 100644 index 8b08274..0000000 --- a/PlayerStart.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef PLAYERSTART_H_ -#define PLAYERSTART_H_ - -#include "LevelObject.h" -#include "Vertex3d.h" - - -class PlayerStart : public Vertex3d, public LevelObject { - public: - virtual bool hit(const Vertex &v) const { - return (v.distanceSq(Vertex(getX(), getZ())) < 0.09); - } - - virtual int getPriority() const {return 10;} - - virtual const char* getType() const { - return "PlayerStart"; - } - - virtual bool canMove() const {return true;} - - virtual void move(float x, float y) { - setX(getX()+x); - setZ(getZ()+y); - } -}; - -#endif /*PLAYERSTART_H_*/ -- cgit v1.2.3