2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:47:42 +00:00

CFirstPersonCamera imps

This commit is contained in:
2016-09-16 15:21:19 -07:00
parent dae5ea06f5
commit 38fcf914b4
15 changed files with 422 additions and 183 deletions

View File

@@ -79,6 +79,23 @@ public:
};
#endif
#if 0
template <class T, size_t N>
class TReservedAverage
{
rstl::reserved_vector<T, N> x0_values;
public:
TReservedAverage() = default;
TReservedAverage(const T& v) { x0_values.resize(N, v); }
void AddValue(const T&)
{
}
};
#endif
namespace std
{
template <>