summaryrefslogtreecommitdiff
path: root/include/f_op/f_op_scene.h
blob: 343f76d922df378396acbcf4fc43d9181fb864e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef F_F_OP_SCENE_H_
#define F_F_OP_SCENE_H_

#include "f_op/f_op_scene_tag.h"
#include "f_pc/f_pc_node.h"
#include "f_pc/f_pc_leaf.h"

struct request_of_phase_process_class;
class mDoDvdThd_command_c;

struct scene_method_class {
    /* 0x00 */ leafdraw_method_class base;
};

typedef struct scene_process_profile_definition {
    /* 0x00 */ node_process_profile_definition base;
    /* 0x20 */ scene_method_class* sub_method; // Subclass methods
    /* 0x24 */ u32 field_0x24; // padding?
} scene_process_profile_definition;

class scene_class {
public:
    /* 0x000 */ process_node_class base;
    /* 0x1AC */ scene_method_class* mpMtd;
    /* 0x1B0 */ scene_tag_class mScnTg;
};

extern leafdraw_method_class g_fopScn_Method;

#endif