metaforce/DataSpec/DNACommon/BabeDead.hpp

17 lines
401 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-09-28 05:19:31 +00:00
namespace hecl::blender {
struct Light;
class PyOutStream;
}
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