vectozavr-shooter/weapon/Rifle.h

17 lines
276 B
C
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 06.06.2021.
//
#ifndef SHOOTER_RIFLE_H
#define SHOOTER_RIFLE_H
#include "Weapon.h"
class Rifle : public Weapon {
public:
explicit Rifle(int ammo = 5, const std::string& weaponName = "rifle");
};
#endif //SHOOTER_3DZAVR_RIFLE_H