Initial commit

This commit is contained in:
Orstedra
2025-05-26 01:52:45 +02:00
parent 7616b37976
commit 142380f587
3 changed files with 27 additions and 4 deletions
+21 -1
View File
@@ -1,8 +1,28 @@
#include "d/t/d_t_shutter_fence_forbiddance.h"
#include "common.h"
#include "d/a/d_a_base.h"
#include "f/f_base.h"
SPECIAL_ACTOR_PROFILE(
TAG_SHUTTER_FENCE_FORBIDDANCE, dTgShutterFenceForbiddance_c, fProfile::TAG_SHUTTER_FENCE_FORBIDDANCE, 0x2A4, 0, 4
);
dTgShutterFenceForbiddance_c::dTgShutterFenceForbiddance_c() {}
static dTgShutterFenceForbiddance_c *FIRST_PTR;
dTgShutterFenceForbiddance_c::dTgShutterFenceForbiddance_c() {
if (!FIRST_PTR) {
FIRST_PTR = this;
}
}
dTgShutterFenceForbiddance_c::~dTgShutterFenceForbiddance_c() {}
int dTgShutterFenceForbiddance_c::create() {
return SUCCEEDED + ((reinterpret_cast<u32>(FIRST_PTR) - reinterpret_cast<u32>(this) |
reinterpret_cast<u32>(this) - reinterpret_cast<u32>(FIRST_PTR)) >>
31);
}
int dTgShutterFenceForbiddance_c::actorExecute() {
return SUCCEEDED;
}