mesh encapsulation done

This commit is contained in:
Clément Le Bihan
2021-06-16 18:17:17 +02:00
parent c9753577da
commit 7fdb5a051d
8 changed files with 99 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
//
// 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;
}
}