vectozavr-shooter/weapon/Rifle.h

17 lines
229 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 final : public Weapon {
2021-09-13 15:53:43 +03:00
public:
2021-10-28 16:58:02 +03:00
explicit Rifle();
2021-09-13 15:53:43 +03:00
};
#endif //SHOOTER_3DZAVR_RIFLE_H