mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-14 06:46:09 +00:00
Begin transitioning to new CModel/CCubeModel & friends
This commit is contained in:
@@ -46,7 +46,6 @@ zeus::CAABox cinput_stream_helper(CInputStream& in) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
template <>
|
||||
zeus::COBBox cinput_stream_helper(CInputStream& in) {
|
||||
zeus::COBBox ret;
|
||||
@@ -95,13 +94,13 @@ zeus::CMatrix4f cinput_stream_helper(CInputStream& in) {
|
||||
return ret.transposed();
|
||||
}
|
||||
|
||||
template<typename T, size_t N>
|
||||
rstl::reserved_vector<T,N> cinput_stream_helper(CInputStream& in) {
|
||||
return rstl::reserved_vector<T,N>(in);
|
||||
template <typename T, size_t N>
|
||||
rstl::reserved_vector<T, N> cinput_stream_helper(CInputStream& in) {
|
||||
return rstl::reserved_vector<T, N>(in);
|
||||
}
|
||||
|
||||
// Output
|
||||
template<>
|
||||
template <>
|
||||
void coutput_stream_helper(const zeus::CVector3f& v, COutputStream& out) {
|
||||
out.Put(v.x());
|
||||
out.Put(v.y());
|
||||
|
||||
Reference in New Issue
Block a user