From d8b164e4727c887979d4da6a4011a444749862fc Mon Sep 17 00:00:00 2001 From: Simponic Date: Thu, 13 Aug 2020 12:07:52 -0600 Subject: Better file structure, stuff is better in general --- src/flyingObject.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/flyingObject.h (limited to 'src/flyingObject.h') diff --git a/src/flyingObject.h b/src/flyingObject.h deleted file mode 100644 index 3296c5a..0000000 --- a/src/flyingObject.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef flyingObject_h -#define flyingObject_h - -#include "point.h" -#include "velocity.h" -#include "uiDraw.h" - -class FlyingObject -{ -protected: - Point point; - Velocity velocity; - bool alive; -public: - FlyingObject() : point( Point() ) , velocity( Velocity() ) , alive( true ) {} - Point getPoint() const { return this->point; } - void setPoint( const Point &point ) { this->point = point; } - Velocity getVelocity() const { return this->velocity; } - void setVelocity( const Velocity &velocity) { this->velocity = velocity; } - bool isAlive() { return this->alive; } - void kill() { alive = false; }; - virtual void draw() { drawDot( point ); }; - virtual void advance(); -}; - - - -#endif /* flyingObject_h */ -- cgit v1.2.3-70-g09d2