mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 07:37:59 -05:00
Update mxbackgroundcolor.cpp
This commit is contained in:
parent
710c1dd5ea
commit
a919eeb7f4
1 changed files with 6 additions and 5 deletions
|
@ -4,18 +4,19 @@
|
|||
// OFFSET: LEGO1 0x1003bec0
|
||||
MxBackgroundColor::~MxBackgroundColor()
|
||||
{
|
||||
m_colorString.~MxString();
|
||||
m_name.~MxString();
|
||||
|
||||
delete &m_colorString;
|
||||
delete &m_name;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1003bea0
|
||||
MxString* MxBackgroundColor::GetColorString()
|
||||
MxString *MxBackgroundColor::GetColorString()
|
||||
{
|
||||
return &m_colorString;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1003beb0
|
||||
void MxBackgroundColor::SetColorString(const char* colorString)
|
||||
void MxBackgroundColor::SetColorString(const char *colorString)
|
||||
{
|
||||
m_colorString.operator=(colorString);
|
||||
m_colorString.operator=(colorString);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue