Files
st/src/000_Second/Actor/ActorEventIcon.cpp
T
Yanis d1e3be4c0b Remove ARM and THUMB macros (#87)
* remove ARM and THUMB macros

* fix regressions
2026-06-18 18:41:28 +02:00

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() {}