Implement/match LegoAnimPresenter::FUN_1006afc0 (#843)

* Implement/match LegoAnimPresenter::FUN_1006afc0

* empty
This commit is contained in:
Christian Semmler
2024-04-24 08:24:59 -04:00
committed by GitHub
parent 41be78ed1c
commit 67c9736953
3 changed files with 35 additions and 5 deletions

View File

@@ -7,6 +7,7 @@
// SIZE 0x48
class MxMatrix : public Matrix4 {
public:
// FUNCTION: LEGO1 0x1006b120
inline MxMatrix() : Matrix4(m_elements) {}
// FUNCTION: LEGO1 0x10032770
@@ -26,7 +27,7 @@ public:
virtual void operator=(const MxMatrix& p_matrix) { Equals(p_matrix); } // vtable+0x48
private:
float m_elements[4][4];
float m_elements[4][4]; // 0x08
};
#endif // MXMATRIX_H