2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 05.06.2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Bonus.h"
|
|
|
|
|
2021-10-12 17:12:47 +03:00
|
|
|
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);
|
|
|
|
}
|