diff options
author | Joe Robinson <joe@lc8n.com> | 2011-03-08 15:14:57 +0000 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2011-03-08 15:14:57 +0000 |
commit | c12fcf8e7663c20e2c2c0696fb35a7059b83127a (patch) | |
tree | 67eaa0be96e058aae54e4cf16aa0735d1a7b90f2 /Shotgun.h | |
parent | 78cab811b677f05a6447aafe2fb8658ecb2c573b (diff) |
Implement weapons
Diffstat (limited to 'Shotgun.h')
-rw-r--r-- | Shotgun.h | 12 |
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 |