mirror of
https://github.com/zeldaret/st
synced 2026-07-02 12:36:02 -04:00
Decompile Actors SWOB, SWTM, EVIC and EFIK (#46)
* decompile SWOB * match sinit * remove useless stuff * decompile actor swtm * decompile actor evic * mark evic as complete * decompile actor efik * EVIC -> EventIcon
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#include "Actor/ActorEventIcon.hpp"
|
||||
#include "System/SysNew.hpp"
|
||||
|
||||
ARM DECL_PROFILE(ActorProfileEventIcon);
|
||||
|
||||
ARM Actor *ActorProfileEventIcon::Create() {
|
||||
return new(HeapIndex_2) ActorEventIcon();
|
||||
}
|
||||
|
||||
ARM ActorProfileEventIcon::ActorProfileEventIcon() :
|
||||
ActorProfile(ActorId_EventIcon) {}
|
||||
|
||||
ARM ActorEventIcon::ActorEventIcon() {
|
||||
this->mUnk_10C = 0;
|
||||
}
|
||||
|
||||
ARM bool ActorEventIcon::vfunc_18(unk32 param1) {
|
||||
this->mUnk_094.func_ov000_0206082c(0x5D, this->mUnk_6c);
|
||||
return true;
|
||||
}
|
||||
|
||||
ARM ActorEventIcon::~ActorEventIcon() {}
|
||||
|
||||
ARM ActorProfileEventIcon::~ActorProfileEventIcon() {}
|
||||
Reference in New Issue
Block a user