From c12fcf8e7663c20e2c2c0696fb35a7059b83127a Mon Sep 17 00:00:00 2001 From: Joe Robinson Date: Tue, 8 Mar 2011 15:14:57 +0000 Subject: Implement weapons --- Shotgun.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Shotgun.h (limited to 'Shotgun.h') 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 -- cgit v1.2.3