mirror of https://github.com/AxioDL/metaforce.git
17 lines
428 B
C++
17 lines
428 B
C++
#pragma once
|
|
|
|
namespace hecl::blender {
|
|
struct Light;
|
|
class PyOutStream;
|
|
} // namespace hecl::blender
|
|
|
|
namespace DataSpec {
|
|
|
|
template <class BabeDeadLight>
|
|
void ReadBabeDeadLightToBlender(hecl::blender::PyOutStream& os, const BabeDeadLight& light, unsigned s, unsigned l);
|
|
|
|
template <class BabeDeadLight>
|
|
void WriteBabeDeadLightFromBlender(BabeDeadLight& lightOut, const hecl::blender::Light& lightIn);
|
|
|
|
} // namespace DataSpec
|