2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-09-28 05:19:31 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
#include "zeus/Math.hpp"
|
2017-12-29 08:08:12 +00:00
|
|
|
#include "hecl/hecl.hpp"
|
2016-03-27 21:02:38 +00:00
|
|
|
#include <cfloat>
|
2015-10-12 04:41:28 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-09-28 05:19:31 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
template<class BabeDeadLight>
|
2017-12-29 08:08:12 +00:00
|
|
|
void ReadBabeDeadLightToBlender(hecl::blender::PyOutStream& os,
|
2016-08-11 19:52:22 +00:00
|
|
|
const BabeDeadLight& light, unsigned s, unsigned l);
|
2015-09-28 05:19:31 +00:00
|
|
|
|
2016-08-11 19:52:22 +00:00
|
|
|
template<class BabeDeadLight>
|
2017-12-29 08:08:12 +00:00
|
|
|
void WriteBabeDeadLightFromBlender(BabeDeadLight& lightOut, const hecl::blender::Light& lightIn);
|
2015-09-28 05:19:31 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|