mirror of
https://github.com/libretro/scenewalker-libretro.git
synced 2024-11-23 15:59:52 +00:00
17 lines
252 B
C++
17 lines
252 B
C++
#ifndef OBJECT_HPP__
|
|
#define OBJECT_HPP__
|
|
|
|
#include "mesh.hpp"
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include "shared.hpp"
|
|
|
|
namespace OBJ
|
|
{
|
|
std::vector<std1::shared_ptr<GL::Mesh> > load_from_file(const std::string& path);
|
|
}
|
|
|
|
#endif
|
|
|