mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 23:47:42 +00:00
CFirstPersonCamera imps
This commit is contained in:
@@ -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 <>
|
||||
|
||||
Reference in New Issue
Block a user