summaryrefslogtreecommitdiff
path: root/src/gun.h
diff options
context:
space:
mode:
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