Implement LegoCarBuildAnimPresenter::Serialize (#1366)

This commit is contained in:
MS
2025-01-20 21:43:24 -05:00
committed by GitHub
parent 5a7df7f95d
commit 4db8b44ce0
2 changed files with 24 additions and 3 deletions

View File

@@ -79,6 +79,7 @@ public:
return this;
}
// FUNCTION: BETA10 0x10073610
LegoStorage* WriteFloat(LegoFloat p_data)
{
Write(&p_data, sizeof(p_data));
@@ -102,6 +103,7 @@ public:
return this;
}
// FUNCTION: BETA10 0x10073690
LegoStorage* ReadString(char* p_data)
{
LegoS16 length;
@@ -148,6 +150,7 @@ public:
return this;
}
// FUNCTION: BETA10 0x10073650
LegoStorage* ReadFloat(LegoFloat& p_data)
{
Read(&p_data, sizeof(p_data));