summaryrefslogtreecommitdiff
path: root/src/gun.h
diff options
context:
space:
mode:
authorSimponic <loganthebean222@gmail.com>2020-11-06 11:48:27 -0700
committerSimponic <loganthebean222@gmail.com>2020-11-06 11:48:27 -0700
commitf4e392912a3812b602f787c6db30296cea14962e (patch)
tree0207b67ab6bb4bca46f56b2fa51d23b5433bb2f4 /src/gun.h
downloadtozy-f4e392912a3812b602f787c6db30296cea14962e.tar.gz
tozy-f4e392912a3812b602f787c6db30296cea14962e.zip
Added files
Diffstat (limited to 'src/gun.h')
-rw-r--r--src/gun.h14
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