diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-14 14:12:14 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-14 14:12:14 +0100 |
commit | f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82 (patch) | |
tree | 6899f16faabe3210989792de92c8b021f112d78a /src/projectile.hpp | |
parent | boss has the correct textures (diff) | |
download | threshold-f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82.tar.gz threshold-f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82.tar.bz2 threshold-f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82.tar.xz threshold-f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82.tar.zst threshold-f3b2fcb95f0eb21d3b1e5977659c6447ccffeb82.zip |
strange behavior... I WILL find out whats going on !
Diffstat (limited to 'src/projectile.hpp')
-rw-r--r-- | src/projectile.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
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 <raylib.h> + +class Projectile { + Vector2 const& direction; + Vector2 const& position; + + public: + Projectile(Vector2 const& direction, Vector2 const& position); + ~Projectile(); +}; + +#endif /* PROJECTILE_H */ |