diff options
author | Simponic <loganthebean222@gmail.com> | 2020-11-06 11:48:27 -0700 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-11-06 11:48:27 -0700 |
commit | f4e392912a3812b602f787c6db30296cea14962e (patch) | |
tree | 0207b67ab6bb4bca46f56b2fa51d23b5433bb2f4 /src/gun.h | |
download | tozy-f4e392912a3812b602f787c6db30296cea14962e.tar.gz tozy-f4e392912a3812b602f787c6db30296cea14962e.zip |
Added files
Diffstat (limited to 'src/gun.h')
-rw-r--r-- | src/gun.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gun.h b/src/gun.h new file mode 100644 index 0000000..2642df0 --- /dev/null +++ b/src/gun.h @@ -0,0 +1,14 @@ +#ifndef GUN_H +#define GUN_H + +#include "point.h" +#include "object.h" +#include "SFML/Graphics.hpp" + +class Gun : public Object { + public: + Gun(); + Gun(const Point &point, const sf::Texture &texture, const int width, const int height); + void draw(sf::RenderWindow &window); +}; +#endif |