Generate all actor profiles and method tables

This commit is contained in:
LagoLunatic
2024-04-21 23:28:36 -04:00
parent 6fb2cfde99
commit 94f3b78155
346 changed files with 8970 additions and 272 deletions
+25
View File
@@ -342,3 +342,28 @@ static s32 daKt_Create(fopAc_ac_c* i_ac) {
return rt;
}
static actor_method_class l_daKt_Method = {
(process_method_func)daKt_Create,
(process_method_func)daKt_Delete,
(process_method_func)daKt_Execute,
(process_method_func)daKt_IsDelete,
(process_method_func)daKt_Draw,
};
actor_process_profile_definition g_profile_KT = {
/* LayerID */ fpcLy_CURRENT_e,
/* ListID */ 0x0007,
/* ListPrio */ fpcPi_CURRENT_e,
/* ProcName */ PROC_KT,
/* Proc SubMtd */ &g_fpcLf_Method.base,
/* Size */ sizeof(kt_class),
/* SizeOther */ 0,
/* Parameters */ 0,
/* Leaf SubMtd */ &g_fopAc_Method.base,
/* Priority */ 0x00AC,
/* Actor SubMtd */ &l_daKt_Method,
/* Status */ fopAcStts_UNK40000_e,
/* Group */ fopAc_ACTOR_e,
/* CullType */ fopAc_CULLBOX_0_e,
};