engine/include/util/model_loader.hpp

16 lines
286 B
C++
Raw Normal View History

2023-05-01 12:55:49 +00:00
#ifndef ENGINE_INCLUDE_UTIL_MODEL_LOADER_H_
#define ENGINE_INCLUDE_UTIL_MODEL_LOADER_H_
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
#include <string>
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
#include "scene.hpp"
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
namespace engine {
namespace util {
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
uint32_t LoadMeshFromFile(Scene* parent, const std::string& path);
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
} // namespace util
} // namespace engine
2023-01-05 13:21:33 +00:00
2023-05-01 12:55:49 +00:00
#endif