Implement most of MxDSAction (#103)

* Implement most of MxDSAction

* Update mxdsaction.h

* Update mxdsobject.cpp
This commit is contained in:
Christian Semmler
2023-08-08 22:38:07 -04:00
committed by GitHub
parent d41b7f2ca4
commit bd9dca0d3f
6 changed files with 234 additions and 35 deletions

View File

@@ -60,6 +60,8 @@ public:
virtual void SetVector(MxVector2 *other);
virtual void SetVector(float *other);
inline float& operator[](size_t idx) { return m_data[idx]; }
inline const float operator[](size_t idx) const { return m_data[idx]; }
protected:
float *m_data;
};