PoliceState constructor (#463)

* PoliceState constructor

* Changes

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach
2024-01-20 09:22:33 -05:00
committed by GitHub
parent b19807cb14
commit 9000f731ac
2 changed files with 12 additions and 2 deletions

View File

@@ -1,7 +1,12 @@
#include "policestate.h"
// STUB: LEGO1 0x1005e7c0
#include <stdlib.h>
DECOMP_SIZE_ASSERT(PoliceState, 0x10)
// FUNCTION: LEGO1 0x1005e7c0
PoliceState::PoliceState()
{
// TODO
m_unk0xc = 0;
m_unk0x8 = (rand() % 2 == 0) ? 501 : 500;
}