mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-28 00:15:50 -04:00
78 lines
1.9 KiB
C++
78 lines
1.9 KiB
C++
//
|
|
// Generated by dtk
|
|
// Translation Unit: d_s_title.cpp
|
|
//
|
|
|
|
#include "f_op/f_op_scene.h"
|
|
#include "f_pc/f_pc_leaf.h"
|
|
#include "f_pc/f_pc_manager.h"
|
|
#include "f_op/f_op_draw_iter.h"
|
|
#include "d/d_procname.h"
|
|
#include "dolphin/types.h"
|
|
|
|
struct title_of_scene_class : public scene_class {
|
|
public:
|
|
u32 pad[0x98];
|
|
};
|
|
|
|
/* 802372F4-80237344 .text dScnTitle_Draw__FP20title_of_scene_class */
|
|
s32 dScnTitle_Draw(title_of_scene_class*) {
|
|
for (create_tag_class* pTag = fopDwIt_Begin(); pTag != NULL; pTag = fopDwIt_Next(pTag))
|
|
fpcM_Draw(pTag->mpTagData);
|
|
return 1;
|
|
}
|
|
|
|
/* 80237344-802374C8 .text dScnTitle_Execute__FP20title_of_scene_class */
|
|
void dScnTitle_Execute(title_of_scene_class*) {
|
|
/* Nonmatching */
|
|
}
|
|
|
|
/* 802374C8-802374D0 .text dScnTitle_IsDelete__FP20title_of_scene_class */
|
|
s32 dScnTitle_IsDelete(title_of_scene_class*) {
|
|
return 1;
|
|
}
|
|
|
|
/* 802374D0-802374D8 .text dScnTitle_Delete__FP20title_of_scene_class */
|
|
s32 dScnTitle_Delete(title_of_scene_class*) {
|
|
return 1;
|
|
}
|
|
|
|
/* 802374D8-80237568 .text dScnTitle_Create__FP11scene_class */
|
|
void dScnTitle_Create(scene_class*) {
|
|
/* Nonmatching */
|
|
}
|
|
|
|
static leafdraw_method_class l_dScnTitle_Method = {
|
|
(process_method_func)dScnTitle_Create,
|
|
(process_method_func)dScnTitle_Delete,
|
|
(process_method_func)dScnTitle_Execute,
|
|
(process_method_func)dScnTitle_IsDelete,
|
|
(process_method_func)dScnTitle_Draw,
|
|
};
|
|
|
|
extern scene_process_profile_definition g_profile_TITLE_SCENE = {
|
|
fpcLy_ROOT_e,
|
|
1,
|
|
fpcPi_CURRENT_e,
|
|
PROC_TITLE_SCENE,
|
|
&g_fpcNd_Method.mBase,
|
|
sizeof(title_of_scene_class),
|
|
0,
|
|
0,
|
|
&g_fopScn_Method.mBase,
|
|
&l_dScnTitle_Method.mBase,
|
|
};
|
|
|
|
extern scene_process_profile_definition g_profile_ENDING_SCENE = {
|
|
fpcLy_ROOT_e,
|
|
1,
|
|
fpcPi_CURRENT_e,
|
|
PROC_ENDING_SCENE,
|
|
&g_fpcNd_Method.mBase,
|
|
sizeof(title_of_scene_class),
|
|
0,
|
|
0,
|
|
&g_fopScn_Method.mBase,
|
|
&l_dScnTitle_Method.mBase,
|
|
};
|