TheAtlasEngine
 
Loading...
Searching...
No Matches
mesh.hpp
1#pragma once
2#include <string>
3
4namespace atlas {
5 class mesh {
6 public:
7 mesh() = default;
8 // TODO: Change this because UNUSED!!!
9 mesh(const std::string& p_filepath);
10 };
11};
Definition mesh.hpp:5