Various fixes in constructors (#1089)

* Various fixes in constructors

* Address review comment

---------

Co-authored-by: jonschz <jonschz@users.noreply.github.com>
This commit is contained in:
jonschz
2024-08-21 19:42:49 +02:00
committed by GitHub
parent 757df96c0d
commit b649902578
9 changed files with 106 additions and 5 deletions

View File

@@ -23,6 +23,14 @@ public:
// SIZE 0x06
struct Entry {
public:
// FUNCTION: LEGO1 0x10016000
Entry()
{
m_id = 0;
m_unk0x02 = 0;
m_score = 0;
}
MxS16 GetUnknown0x02() { return m_unk0x02; }
MxS16 GetHighScore() { return m_score; }