mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-17 21:03:35 -04:00
Generate all actor profiles and method tables
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
//
|
||||
|
||||
#include "d/actor/d_a_obj_quake.h"
|
||||
#include "dolphin/types.h"
|
||||
#include "d/d_procname.h"
|
||||
|
||||
/* 000000EC-00000134 .text __ct__16daObjQuake_HIO_cFv */
|
||||
daObjQuake_HIO_c::daObjQuake_HIO_c() {
|
||||
@@ -71,3 +71,28 @@ static BOOL daObjQuakeIsDelete(void*) {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
|
||||
static actor_method_class daObjQuakeMethodTable = {
|
||||
(process_method_func)daObjQuakeCreate,
|
||||
(process_method_func)daObjQuakeDelete,
|
||||
(process_method_func)daObjQuakeExecute,
|
||||
(process_method_func)daObjQuakeIsDelete,
|
||||
(process_method_func)daObjQuakeDraw,
|
||||
};
|
||||
|
||||
actor_process_profile_definition g_profile_Obj_Quake = {
|
||||
/* LayerID */ fpcLy_CURRENT_e,
|
||||
/* ListID */ 0x0002,
|
||||
/* ListPrio */ fpcPi_CURRENT_e,
|
||||
/* ProcName */ PROC_Obj_Quake,
|
||||
/* Proc SubMtd */ &g_fpcLf_Method.base,
|
||||
/* Size */ sizeof(daObjQuake_c),
|
||||
/* SizeOther */ 0,
|
||||
/* Parameters */ 0,
|
||||
/* Leaf SubMtd */ &g_fopAc_Method.base,
|
||||
/* Priority */ 0x0014,
|
||||
/* Actor SubMtd */ &daObjQuakeMethodTable,
|
||||
/* Status */ fopAcStts_CULL_e | fopAcStts_UNK4000_e | fopAcStts_UNK40000_e,
|
||||
/* Group */ fopAc_ACTOR_e,
|
||||
/* CullType */ fopAc_CULLBOX_0_e,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user