2021-04-09 01:22:16 +02:00
|
|
|
#ifndef F_F_OP_OVERLAP_H_
|
|
|
|
|
#define F_F_OP_OVERLAP_H_
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2024-01-13 01:46:47 -08:00
|
|
|
#include "f_pc/f_pc_leaf.h"
|
2024-11-29 08:24:26 -08:00
|
|
|
#include "SSystem/SComponent/c_request.h"
|
2024-01-13 01:46:47 -08:00
|
|
|
|
2025-09-25 15:57:15 -04:00
|
|
|
struct overlap_task_class {
|
|
|
|
|
/* 0x00 */ leafdraw_class base;
|
2024-11-29 08:24:26 -08:00
|
|
|
/* 0xC0 */ leafdraw_method_class* submethod;
|
|
|
|
|
/* 0xC4 */ request_base_class request;
|
|
|
|
|
/* 0xC8 */ fpc_ProcID scene_id;
|
2024-01-13 01:46:47 -08:00
|
|
|
}; // Size: 0xCC
|
|
|
|
|
|
|
|
|
|
struct overlap_process_profile_definition {
|
|
|
|
|
/* 0x00 */ leaf_process_profile_definition base;
|
2024-03-04 17:33:13 -08:00
|
|
|
/* 0x24 */ leafdraw_method_class* sub_method;
|
2024-01-13 01:46:47 -08:00
|
|
|
}; // Size: 0x28
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2022-03-26 10:17:17 -07:00
|
|
|
static s32 fopOvlp_Draw(void* param_1);
|
2021-04-09 01:22:16 +02:00
|
|
|
|
2024-01-13 01:46:47 -08:00
|
|
|
extern leafdraw_method_class g_fopOvlp_Method;
|
|
|
|
|
|
2024-11-29 08:24:26 -08:00
|
|
|
#endif
|