aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Bullet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Bullet.hpp')
-rw-r--r--src/main/headers/Bullet.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/headers/Bullet.hpp b/src/main/headers/Bullet.hpp
new file mode 100644
index 0000000..e38c3f2
--- /dev/null
+++ b/src/main/headers/Bullet.hpp
@@ -0,0 +1,12 @@
+#ifndef BULLET_HPP
+#define BULLET_HPP
+
+#include "Item.hpp"
+
+class Bullet : public Item
+{
+public:
+ bool use(RangedWeapon &weapon);
+}
+
+#endif