summaryrefslogtreecommitdiff
path: root/Shotgun.h
blob: 0cfa69f5662764c9cfbfc40a2ef48207c50a0446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SHOTGUN_H
#define SHOTGUN_H

#include "Weapon.h"

class Shotgun : public Weapon {
    public:
        Shotgun();

        void attack();
};
#endif