Act2PoliceStation::Notify

This commit is contained in:
Joshua Peisach 2024-06-08 11:20:37 -04:00
parent 2147be19de
commit 881961ae78
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A

View File

@ -1,11 +1,20 @@
#include "act2policestation.h"
#include "legoworld.h"
#include "misc.h"
#include "mxmisc.h"
#include "mxnotificationmanager.h"
#include "mxnotificationparam.h"
DECOMP_SIZE_ASSERT(Act2PoliceStation, 0x68)
// STUB: LEGO1 0x1004e0e0
// FUNCTION: LEGO1 0x1004e0e0
MxLong Act2PoliceStation::Notify(MxParam& p_param)
{
// TODO
if (((MxNotificationParam&) p_param).GetType() == c_notificationClick) {
NotificationManager()->Send(CurrentWorld(), MxNotificationParam(c_notificationType23, NULL));
return 1;
}
return 0;
return -1;
}