engine/include/util/model_loader.h
2023-05-01 14:13:35 +01:00

16 lines
284 B
C++

#ifndef ENGINE_INCLUDE_UTIL_MODEL_LOADER_H_
#define ENGINE_INCLUDE_UTIL_MODEL_LOADER_H_
#include <string>
#include "scene.h"
namespace engine {
namespace util {
uint32_t LoadMeshFromFile(Scene* parent, const std::string& path);
} // namespace util
} // namespace engine
#endif