constructor is almost matching

This commit is contained in:
Misha
2023-06-24 20:38:10 +03:00
parent 579ee84049
commit 0ce6fab3d0
4 changed files with 58 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
#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)
{
}