2019-01-18 21:26:42 +01:00
|
|
|
#pragma once
|
2019-01-18 15:55:06 +01:00
|
|
|
#include "meshloader.hpp"
|
2019-01-18 21:26:42 +01:00
|
|
|
#include <string>
|
2014-01-31 08:23:00 +13:00
|
|
|
|
2019-01-18 17:04:17 +01:00
|
|
|
class Loader_B3D : public MeshLoader {
|
|
|
|
|
public:
|
2019-01-18 21:26:42 +01:00
|
|
|
MeshModel* load(const std::string& f, const Transform& conv, int hint);
|
2014-01-31 08:23:00 +13:00
|
|
|
};
|