aboutsummaryrefslogtreecommitdiffstats
path: root/src/projectile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectile.cpp')
-rw-r--r--src/projectile.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/projectile.cpp b/src/projectile.cpp
index e65222e..e69de29 100644
--- a/src/projectile.cpp
+++ b/src/projectile.cpp
@@ -1,11 +0,0 @@
-#include "projectile.hpp"
-#include <raylib.h>
-
-Projectile::Projectile(Vector2 const& dir, Vector2 const& pos)
- : direction(dir), position(pos) {}
-
-Projectile::~Projectile() {}
-
-Projectile* Projectile::getProjectile() {
- return (this);
-}