metaforce/DataSpec/DNACommon/MLVL.hpp

25 lines
567 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include <functional>
#include "DataSpec/DNACommon/DNACommon.hpp"
#include <hecl/SystemChar.hpp>
namespace hecl {
class ProjectPath;
}
namespace hecl::blender {
class Connection;
}
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMLVL {
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);
}