Implement/match LegoOmni::Create (#556)

* Implement/match LegoOmni::Create

* Fix var

* Rename

* Fix style
This commit is contained in:
Christian Semmler
2024-02-10 20:52:16 -05:00
committed by GitHub
parent c69cd4d818
commit a29c0aca3f
17 changed files with 208 additions and 50 deletions

View File

@@ -22,13 +22,13 @@ public:
}
// FUNCTION: LEGO1 0x1003bea0
virtual MxString* GetValue() { return &m_value; }
virtual MxString* GetValue() { return &m_value; } // vtable+0x00
// FUNCTION: LEGO1 0x1003beb0
virtual void SetValue(const char* p_value) { m_value = p_value; }
virtual void SetValue(const char* p_value) { m_value = p_value; } // vtable+0x04
// FUNCTION: LEGO1 0x1003bec0
virtual void Destroy() { delete this; }
virtual void Destroy() { delete this; } // vtable+0x08
inline const MxString* GetKey() const { return &m_key; }