2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-10-24 01:23:45 +00:00
|
|
|
|
2019-08-23 23:24:04 +00:00
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
|
|
|
|
|
|
|
#include <hecl/SystemChar.hpp>
|
|
|
|
|
|
|
|
namespace hecl {
|
|
|
|
class ProjectPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace hecl::blender {
|
|
|
|
class Connection;
|
|
|
|
}
|
2015-10-24 01:23:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMLVL {
|
2015-10-24 01:23:45 +00:00
|
|
|
|
|
|
|
template <class PAKRouter, typename MLVL>
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ReadMLVLToBlender(hecl::blender::Connection& conn, const MLVL& mlvl, const hecl::ProjectPath& outPath,
|
|
|
|
PAKRouter& pakRouter, const typename PAKRouter::EntryType& entry, bool force,
|
2016-03-05 00:03:41 +00:00
|
|
|
std::function<void(const hecl::SystemChar*)> fileChanged);
|
2015-10-24 01:23:45 +00:00
|
|
|
|
|
|
|
}
|