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
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec {
|
2015-09-28 05:19:31 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
template <class BabeDeadLight>
|
|
|
|
void ReadBabeDeadLightToBlender(hecl::blender::PyOutStream& os, const BabeDeadLight& light, unsigned s, unsigned l);
|
2015-09-28 05:19:31 +00:00
|
|
|
|
2018-12-08 05:30:43 +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
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec
|