2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef LOADER_X_H
|
|
|
|
|
#define LOADER_X_H
|
|
|
|
|
|
2019-01-18 15:55:06 +01:00
|
|
|
#include "meshloader.hpp"
|
2014-01-31 08:23:00 +13:00
|
|
|
|
2019-01-18 17:04:17 +01:00
|
|
|
class Loader_X : public MeshLoader {
|
|
|
|
|
public:
|
|
|
|
|
MeshModel* load(const string& f, const Transform& conv, int hint);
|
2014-01-31 08:23:00 +13:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|