mirror of https://github.com/AxioDL/metaforce.git
19 lines
417 B
C++
19 lines
417 B
C++
#pragma once
|
|
|
|
#include "zeus/Math.hpp"
|
|
#include "hecl/hecl.hpp"
|
|
#include <cfloat>
|
|
|
|
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);
|
|
|
|
}
|
|
|