mirror of
https://github.com/danule222/xrbDS.git
synced 2025-06-18 14:25:33 -04:00
8 lines
219 B
C++
8 lines
219 B
C++
#include "resources/mesh.h"
|
|
|
|
Mesh Mesh::Load(const TVector<TVector<FVertex>> &vertices) {
|
|
return std::move(Mesh(vertices));
|
|
}
|
|
|
|
Mesh::Mesh(const TVector<TVector<FVertex>> &vertices)
|
|
: Super(), vertices(vertices) {} |