mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Implement/match FUN_10032620 (#687)
This commit is contained in:

committed by
GitHub

parent
937a45020c
commit
ba5bc46c0c
@@ -8,8 +8,12 @@
|
||||
class MxMatrix : public Matrix4 {
|
||||
public:
|
||||
inline MxMatrix() : Matrix4(m_elements) {}
|
||||
|
||||
// FUNCTION: LEGO1 0x10032770
|
||||
inline MxMatrix(const MxMatrix& p_matrix) : Matrix4(m_elements) { Equals(p_matrix); }
|
||||
|
||||
inline MxMatrix(const Matrix4& p_matrix) : Matrix4(m_elements) { Equals(p_matrix); }
|
||||
|
||||
float* operator[](size_t idx) { return m_data[idx]; }
|
||||
const float* operator[](size_t idx) const { return m_data[idx]; }
|
||||
|
||||
|
Reference in New Issue
Block a user