diff options
Diffstat (limited to 'src/Mesh.hpp')
| -rw-r--r-- | src/Mesh.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mesh.hpp b/src/Mesh.hpp index acf4f3b..a6d80d3 100644 --- a/src/Mesh.hpp +++ b/src/Mesh.hpp @@ -9,12 +9,12 @@ namespace MC { class Mesh { public: - Mesh(std::vector<Vector3> positions) : m_positions(std::move(positions)) {}; + Mesh(std::vector<Vector<3>> positions) : m_positions(std::move(positions)) {}; std::size_t size(); float* flat(); private: - std::vector<Vector3> m_positions; + std::vector<Vector<3>> m_positions; }; } \ No newline at end of file |
