mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-29 19:16:05 -05:00
18 lines
No EOL
360 B
C++
18 lines
No EOL
360 B
C++
#include "legobackgroundcolor.h"
|
|
#include "legoomni.h"
|
|
#include "legoutil.h"
|
|
|
|
// OFFSET: LEGO1 0x1003bfb0
|
|
LegoBackgroundColor::LegoBackgroundColor(const char* name, const char* colorString)
|
|
{
|
|
this->m_name.operator=(name);
|
|
this->m_name.ToUpperCase();
|
|
SetColorString(colorString);
|
|
}
|
|
|
|
|
|
|
|
void LegoBackgroundColor::SetColorString(const char* colorString)
|
|
{
|
|
|
|
} |