mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-08 20:20:04 -04:00
misc actor cleanup
This commit is contained in:
@@ -2,31 +2,31 @@
|
||||
#include "d/actor/d_a_rectangle.h"
|
||||
#include "f_op/f_op_actor.h"
|
||||
#include "d/d_procname.h"
|
||||
#include "dolphin/types.h"
|
||||
#include "SSystem/SComponent/c_phase.h"
|
||||
|
||||
/* 00000078-00000080 .text daRct_Draw__FP15RECTANGLE_class */
|
||||
static BOOL daRct_Draw(RECTANGLE_class*) {
|
||||
return true;
|
||||
static BOOL daRct_Draw(RECTANGLE_class* i_this) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* 00000080-00000088 .text daRct_Execute__FP15RECTANGLE_class */
|
||||
static BOOL daRct_Execute(RECTANGLE_class*) {
|
||||
return true;
|
||||
static BOOL daRct_Execute(RECTANGLE_class* i_this) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* 00000088-00000090 .text daRct_IsDelete__FP15RECTANGLE_class */
|
||||
static BOOL daRct_IsDelete(RECTANGLE_class*) {
|
||||
return true;
|
||||
static BOOL daRct_IsDelete(RECTANGLE_class* i_this) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* 00000090-00000098 .text daRct_Delete__FP15RECTANGLE_class */
|
||||
static BOOL daRct_Delete(RECTANGLE_class*) {
|
||||
return true;
|
||||
static BOOL daRct_Delete(RECTANGLE_class* i_this) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* 00000098-000000A0 .text daRct_Create__FP10fopAc_ac_c */
|
||||
static int daRct_Create(fopAc_ac_c*) {
|
||||
return 0x4;
|
||||
static int daRct_Create(fopAc_ac_c* i_this) {
|
||||
return cPhs_COMPLEATE_e;
|
||||
}
|
||||
|
||||
static actor_method_class l_daRct_Method = {
|
||||
@@ -38,18 +38,18 @@ static actor_method_class l_daRct_Method = {
|
||||
};
|
||||
|
||||
actor_process_profile_definition g_profile_RECTANGLE = {
|
||||
fpcLy_CURRENT_e,
|
||||
7,
|
||||
fpcLy_CURRENT_e,
|
||||
PROC_RECTANGLE,
|
||||
&g_fpcLf_Method.mBase,
|
||||
sizeof(RECTANGLE_class),
|
||||
0,
|
||||
0,
|
||||
&g_fopAc_Method.base,
|
||||
0x9F,
|
||||
&l_daRct_Method,
|
||||
fopAcStts_UNK40000_e,
|
||||
fopAc_ACTOR_e,
|
||||
fopAc_CULLBOX_0_e,
|
||||
/* LayerID */ fpcLy_CURRENT_e,
|
||||
/* ListID */ 7,
|
||||
/* ListPrio */ fpcLy_CURRENT_e,
|
||||
/* ProcName */ PROC_RECTANGLE,
|
||||
/* Proc SubMtd */ &g_fpcLf_Method.mBase,
|
||||
/* Size */ sizeof(RECTANGLE_class),
|
||||
/* SizeOther */ 0,
|
||||
/* Parameters */ 0,
|
||||
/* Leaf SubMtd */ &g_fopAc_Method.base,
|
||||
/* Priority */ 0x9F,
|
||||
/* Actor SubMtd */ &l_daRct_Method,
|
||||
/* Status */ fopAcStts_UNK40000_e,
|
||||
/* Group */ fopAc_ACTOR_e,
|
||||
/* CullType */ fopAc_CULLBOX_0_e,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user