Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Object.hpp"
- Nio::Object::Object::Object(Nio::Managers::GeometryManager &geometryManager, unsigned int id, const std::string &name) :
- Nio::Interfaces::Identificable(id),
- Nio::Interfaces::Nameable(name),
- geometry(geometryManager.get(name)),
- transform(true)
- {
- }
- Nio::Object::Object::~Object()
- {
- }
- void Nio::Object::Object::bind() const
- {
- }
- void Nio::Object::Object::release() const
- {
- }
- const Nio::Math::Matrix4x4& Nio::Object::Object::getTransform() const
- {
- return this->transform;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement