vectozavr-shooter/Bonus.cpp

12 lines
290 B
C++
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 05.06.2021.
//
#include "Bonus.h"
Bonus::Bonus(const std::string &bonusName, const std::string &filename, const std::string &materials, const Vec3D &scale) {
2021-09-13 15:53:43 +03:00
_name = bonusName;
loadObj(filename, materials, scale);
setCollider(false);
}