shooter/weapon/Rifle.cpp

11 lines
381 B
C++
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 06.06.2021.
//
2021-10-09 13:41:12 +03:00
#include "../engine/ResourceManager.h"
2021-09-13 15:53:43 +03:00
#include "Rifle.h"
2021-10-16 20:22:55 +03:00
#include "../ShooterConsts.h"
2021-09-13 15:53:43 +03:00
2021-10-29 18:19:30 +03:00
Rifle::Rifle() : Weapon(5, 1, 1.0, 1.0, 30000, 0.5, ShooterConsts::RIFLE_FIRE_SOUND, ShooterConsts::RIFLE_RELOAD_SOUND, ObjectNameTag("rifle"), ShooterConsts::RIFLE_OBJ, Vec3D{3, 3, 3}, Vec3D{-2.3, 1, 1.3}, Vec3D{0, Consts::PI, 0}) {
2021-09-13 15:53:43 +03:00
}