vectozavr-shooter/weapon/Ak47.h

17 lines
262 B
C
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 02.06.2021.
//
#ifndef SHOOTER_AK47_H
#define SHOOTER_AK47_H
#include "Weapon.h"
class Ak47 final : public Weapon {
2021-09-13 15:53:43 +03:00
public:
2021-10-28 16:58:02 +03:00
explicit Ak47(const std::string& weaponName = "ak47");
2021-09-13 15:53:43 +03:00
};
#endif //SHOOTER_3DZAVR_AK47_H