summaryrefslogtreecommitdiff
path: root/Shotgun.h
diff options
context:
space:
mode:
Diffstat (limited to 'Shotgun.h')
-rw-r--r--Shotgun.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Shotgun.h b/Shotgun.h
new file mode 100644
index 0000000..0cfa69f
--- /dev/null
+++ b/Shotgun.h
@@ -0,0 +1,12 @@
+#ifndef SHOTGUN_H
+#define SHOTGUN_H
+
+#include "Weapon.h"
+
+class Shotgun : public Weapon {
+ public:
+ Shotgun();
+
+ void attack();
+};
+#endif