2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-14 04:46:09 +00:00

Begin transitioning to new CModel/CCubeModel & friends

This commit is contained in:
2022-02-25 02:45:25 -05:00
parent c3c9f9d601
commit 832eb180bd
146 changed files with 2221 additions and 1582 deletions

View File

@@ -1,5 +1,7 @@
#pragma once
#include "Runtime/GCNTypes.hpp"
#include <array>
#include <string>
namespace metaforce {
@@ -46,7 +48,7 @@ public:
double ReadDouble();
void Get(u8* dest, u32 len);
template <class T>
template <typename T>
T Get() {
return cinput_stream_helper<T>(*this);
}
@@ -80,4 +82,4 @@ template <>
double cinput_stream_helper(CInputStream& in);
template <>
std::string cinput_stream_helper(CInputStream& in);
} // namespace metaforce
} // namespace metaforce