Match most of CVectorElement

This commit is contained in:
2025-11-25 12:18:56 -08:00
parent 611852a3f0
commit 845c55c80c
7 changed files with 338 additions and 33 deletions

View File

@@ -11,7 +11,7 @@ class CVector3f;
class IElement {
public:
virtual ~IElement(){};
virtual ~IElement() {};
// -> CFrameDelayedKiller
void* operator new(size_t sz, const char*, const char*);
@@ -27,7 +27,7 @@ public:
class CIntElement : public IElement {
public:
~CIntElement() override{};
~CIntElement() override {};
virtual bool GetValue(int frame, int& valOut) const = 0;
};
@@ -56,7 +56,7 @@ struct SUVElementSet {
float xMin, yMin, xMax, yMax;
// SUVElementSet() : xMin(0.f), yMin(1.f), xMax(0.f), yMax(1.f) {}
//SUVElementSet(float xMin, float yMin, float xMax, float yMax)
// SUVElementSet(float xMin, float yMin, float xMax, float yMax)
//: xMin(xMin), yMin(yMin), xMax(xMax), yMax(yMax) {}
// SUVElementSet(const SUVElementSet& other)
// : xMin(other.xMin), yMin(other.yMin), xMax(other.xMax), yMax(other.yMax) {}