implement SetColorString

This commit is contained in:
Misha
2023-06-24 21:47:05 +03:00
parent 323a2ee0e7
commit 7ae1c05df9
9 changed files with 86 additions and 6 deletions

7
LEGO1/legoutil.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "legoutil.h"
// OFFSET: LEGO1 0x1003eae0
void ConvertColor(float r, float g, float b, float* out_r, float* out_g, float* out_b)
{
// todo
}