mirror of
https://github.com/zeldaret/st
synced 2026-06-19 15:40:35 -04:00
d1e3be4c0b
* remove ARM and THUMB macros * fix regressions
25 lines
572 B
C++
25 lines
572 B
C++
#include "Actor/ActorEventIcon.hpp"
|
|
#include "System/SysNew.hpp"
|
|
|
|
DECL_PROFILE(ActorProfileEventIcon);
|
|
|
|
Actor *ActorProfileEventIcon::Create() {
|
|
return new(HeapIndex_2) ActorEventIcon();
|
|
}
|
|
|
|
ActorProfileEventIcon::ActorProfileEventIcon() :
|
|
ActorProfile(ActorId_EventIcon) {}
|
|
|
|
ActorEventIcon::ActorEventIcon() {
|
|
this->mUnk_10C = 0;
|
|
}
|
|
|
|
bool ActorEventIcon::vfunc_18(unk32 param1) {
|
|
this->mUnk_094.func_ov000_0206082c(0x5D, this->mUnk_5C.mParams[0]);
|
|
return true;
|
|
}
|
|
|
|
ActorEventIcon::~ActorEventIcon() {}
|
|
|
|
ActorProfileEventIcon::~ActorProfileEventIcon() {}
|