mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
Move dtor
This commit is contained in:
parent
7ea8c69bba
commit
7943145cfa
@ -14,9 +14,6 @@ struct UnknownMatrixType {
|
|||||||
// VTABLE: BETA10 0x101b8340
|
// VTABLE: BETA10 0x101b8340
|
||||||
// SIZE 0x08
|
// SIZE 0x08
|
||||||
class Matrix4 {
|
class Matrix4 {
|
||||||
public:
|
|
||||||
virtual ~Matrix4() {}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
float (*m_data)[4];
|
float (*m_data)[4];
|
||||||
|
|
||||||
@ -25,6 +22,8 @@ class Matrix4 {
|
|||||||
// FUNCTION: BETA10 0x1000fc70
|
// FUNCTION: BETA10 0x1000fc70
|
||||||
Matrix4(float (*p_data)[4]) { SetData(p_data); }
|
Matrix4(float (*p_data)[4]) { SetData(p_data); }
|
||||||
|
|
||||||
|
virtual ~Matrix4() {}
|
||||||
|
|
||||||
inline virtual void Equals(float (*p_data)[4]); // vtable+0x04
|
inline virtual void Equals(float (*p_data)[4]); // vtable+0x04
|
||||||
inline virtual void Equals(const Matrix4& p_matrix); // vtable+0x00
|
inline virtual void Equals(const Matrix4& p_matrix); // vtable+0x00
|
||||||
inline virtual void SetData(float (*p_data)[4]); // vtable+0x0c
|
inline virtual void SetData(float (*p_data)[4]); // vtable+0x0c
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user