Files
2021-06-16 18:17:17 +02:00

13 lines
187 B
C++

//
// Created by cbihan on 16/06/2021.
//
#include "AMesh.hpp"
namespace RAY::Mesh
{
std::shared_ptr<::Mesh> RAY::Mesh::AMesh::getRaylibMesh() const
{
return this->_raylibMesh;
}
}