mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-01 08:07:49 -04:00
[ACTOR] d_a_rectangle OK (#58)
* Update d_a_rectangle.cpp * Update d_a_rectangle.cpp * parking * 100% match * fixing this return type as it cant really be a bool * this isn't padding, its the size of fopAc_ac_c * formatting
This commit is contained in:
@@ -1,33 +1,58 @@
|
||||
//
|
||||
// Generated by dtk
|
||||
// Translation Unit: d_a_rectangle.cpp
|
||||
//
|
||||
|
||||
#include "d_a_rectangle.h"
|
||||
/**
|
||||
* d_a_rectangle.cpp
|
||||
*/
|
||||
#include "f_op/f_op_actor.h"
|
||||
#include "d/d_procname.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
struct RECTANGLE_class : fopAc_ac_c {};
|
||||
|
||||
/* 00000078-00000080 .text daRct_Draw__FP15RECTANGLE_class */
|
||||
void daRct_Draw(RECTANGLE_class*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daRct_Draw(RECTANGLE_class*) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 00000080-00000088 .text daRct_Execute__FP15RECTANGLE_class */
|
||||
void daRct_Execute(RECTANGLE_class*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daRct_Execute(RECTANGLE_class*) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 00000088-00000090 .text daRct_IsDelete__FP15RECTANGLE_class */
|
||||
void daRct_IsDelete(RECTANGLE_class*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daRct_IsDelete(RECTANGLE_class*) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 00000090-00000098 .text daRct_Delete__FP15RECTANGLE_class */
|
||||
void daRct_Delete(RECTANGLE_class*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daRct_Delete(RECTANGLE_class*) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/* 00000098-000000A0 .text daRct_Create__FP10fopAc_ac_c */
|
||||
void daRct_Create(fopAc_ac_c*) {
|
||||
/* Nonmatching */
|
||||
static int daRct_Create(fopAc_ac_c*) {
|
||||
return 0x4;
|
||||
}
|
||||
|
||||
static actor_method_class l_daRct_Method = {
|
||||
(process_method_func)daRct_Create,
|
||||
(process_method_func)daRct_Delete,
|
||||
(process_method_func)daRct_Execute,
|
||||
(process_method_func)daRct_IsDelete,
|
||||
(process_method_func)daRct_Draw,
|
||||
};
|
||||
|
||||
extern 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,
|
||||
0x00040000,
|
||||
fopAc_ACTOR_e,
|
||||
fopAc_CULLBOX_0_e,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user