From f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82 Mon Sep 17 00:00:00 2001 From: salaaad2 Date: Fri, 14 Jan 2022 14:12:14 +0100 Subject: strange behavior... I WILL find out whats going on ! --- src/projectile.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/projectile.hpp (limited to 'src/projectile.hpp') diff --git a/src/projectile.hpp b/src/projectile.hpp new file mode 100644 index 0000000..e25e5f4 --- /dev/null +++ b/src/projectile.hpp @@ -0,0 +1,15 @@ +#ifndef PROJECTILE_H +#define PROJECTILE_H + +#include + +class Projectile { + Vector2 const& direction; + Vector2 const& position; + + public: + Projectile(Vector2 const& direction, Vector2 const& position); + ~Projectile(); +}; + +#endif /* PROJECTILE_H */ -- cgit v1.2.3