blob: 584bff29d4efc0ea9451c3217edb10a4affcf6e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef F_F_OP_CAMERA_H_
#define F_F_OP_CAMERA_H_
#include "f_op/f_op_view.h"
class camera_class;
struct camera_process_profile_definition {
/* 0x00 */ view_process_profile_definition base;
/* 0x3C */ leafdraw_method_class* sub_method; // Subclass methods
/* 0x40 */ u32 unk_0x40;
};
static s32 fopCam_Draw(camera_class* i_this);
static int fopCam_Execute(camera_class* i_this);
int fopCam_IsDelete(camera_class* i_this);
extern leafdraw_method_class g_fopCam_Method;
#endif
|