gbarubik/inc/model_instance.hpp

18 lines
284 B
C++
Raw Normal View History

2023-11-24 20:19:42 -05:00
#ifndef MODEL_INSTANCE_HPP
#define MODEL_INSTANCE_HPP
#include "mesh.hpp"
#include "renderable.hpp"
#include <tonc.h>
class ModelInstance : Renderable {
private:
FIXED m_scale;
VECTOR m_rotation;
VECTOR m_pos;
std::shared_ptr<Mesh> m_mesh;
};
#endif // MODEL_INSTANCE_HPP