2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 03.06.2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SHOOTER_GUN_H
|
|
|
|
#define SHOOTER_GUN_H
|
|
|
|
|
|
|
|
#include "Weapon.h"
|
|
|
|
|
2021-10-12 20:18:56 +03:00
|
|
|
class Gun final : public Weapon {
|
2021-09-13 15:53:43 +03:00
|
|
|
public:
|
|
|
|
explicit Gun(int ammo = 30, const std::string& weaponName = "gun");
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //SHOOTER_3DZAVR_GUN_H
|