2015-10-24 01:23:45 +00:00
|
|
|
#ifndef __DNACOMMON_MLVL_HPP__
|
|
|
|
#define __DNACOMMON_MLVL_HPP__
|
|
|
|
|
|
|
|
#include "DNACommon.hpp"
|
2016-09-18 23:47:48 +00:00
|
|
|
#include "hecl/Blender/BlenderConnection.hpp"
|
2016-03-04 23:04:53 +00:00
|
|
|
#include "zeus/CVector3f.hpp"
|
2015-10-24 01:23:45 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-10-24 01:23:45 +00:00
|
|
|
{
|
|
|
|
namespace DNAMLVL
|
|
|
|
{
|
|
|
|
|
|
|
|
template <class PAKRouter, typename MLVL>
|
2016-03-04 23:04:53 +00:00
|
|
|
bool ReadMLVLToBlender(hecl::BlenderConnection& conn,
|
2015-10-24 01:23:45 +00:00
|
|
|
const MLVL& mlvl,
|
2016-03-04 23:04:53 +00:00
|
|
|
const hecl::ProjectPath& outPath,
|
2015-10-24 01:23:45 +00:00
|
|
|
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
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __DNACOMMON_MLVL_HPP__
|