shooter/weapon/Rifle.h

17 lines
229 B
C++

//
// Created by Иван Ильин on 06.06.2021.
//
#ifndef SHOOTER_RIFLE_H
#define SHOOTER_RIFLE_H
#include "Weapon.h"
class Rifle final : public Weapon {
public:
explicit Rifle();
};
#endif //SHOOTER_3DZAVR_RIFLE_H