aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Weapon.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Weapon.hpp')
-rw-r--r--src/main/headers/Weapon.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/headers/Weapon.hpp b/src/main/headers/Weapon.hpp
new file mode 100644
index 0000000..ef9d3d5
--- /dev/null
+++ b/src/main/headers/Weapon.hpp
@@ -0,0 +1,14 @@
+#ifndef WEAPON_HPP
+#define WEAPON_HPP
+
+#include "Item.hpp"
+#include "Actor.hpp"
+
+class Weapon : public Item
+{
+protected:
+ unsigned _damage;
+ unsigned _requiredLevel;
+};
+
+#endif