diff options
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 */ |