2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-08-23 23:58:07 +00:00
|
|
|
|
2022-02-19 13:04:45 +00:00
|
|
|
#include "Runtime/Streams/CMemoryInStream.hpp"
|
|
|
|
#include "Runtime/Streams/CMemoryStreamOut.hpp"
|
|
|
|
#include "Runtime/Streams/CZipInputStream.hpp"
|
|
|
|
#include "Runtime/Streams/ContainerReaders.hpp"
|
|
|
|
#include "Runtime/rstl.hpp"
|
2022-02-18 07:37:54 +00:00
|
|
|
|
|
|
|
namespace zeus {
|
|
|
|
class CVector2f;
|
|
|
|
class CVector3f;
|
|
|
|
class CVector4f;
|
|
|
|
class CTransform;
|
|
|
|
class CMatrix3f;
|
|
|
|
class CMatrix4f;
|
|
|
|
class CAABox;
|
|
|
|
class COBBox;
|
|
|
|
class CQuaternion;
|
|
|
|
class CColor;
|
2022-02-19 13:04:45 +00:00
|
|
|
} // namespace zeus
|
2022-02-25 07:45:25 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2022-02-18 07:37:54 +00:00
|
|
|
// Custom helpers for input/output
|
|
|
|
template <>
|
|
|
|
zeus::CVector2f cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CVector3f cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CVector4f cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CQuaternion cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CAABox cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::COBBox cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CColor cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CTransform cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CMatrix3f cinput_stream_helper(CInputStream& in);
|
|
|
|
template <>
|
|
|
|
zeus::CMatrix4f cinput_stream_helper(CInputStream& in);
|
2022-02-19 13:04:45 +00:00
|
|
|
|
|
|
|
template <>
|
|
|
|
void coutput_stream_helper(const zeus::CVector3f& v, COutputStream& out);
|
2022-02-25 07:45:25 +00:00
|
|
|
} // namespace metaforce
|