mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
16 lines
302 B
C++
16 lines
302 B
C++
#include "mxbackgroundcolor.h"
|
|
#include "mxstring.h"
|
|
|
|
|
|
// OFFSET: LEGO1 0x1003bea0
|
|
MxString* MxBackgroundColor::GetColorString()
|
|
{
|
|
return &m_colorString;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x1003beb0
|
|
void MxBackgroundColor::SetColorString(const char* colorString)
|
|
{
|
|
this->m_colorString.operator=(colorString);
|
|
}
|