mirror of https://github.com/zeldaret/tp.git
27 lines
679 B
C++
27 lines
679 B
C++
#ifndef F_F_OP_SCENE_H_
|
|
#define F_F_OP_SCENE_H_
|
|
|
|
#include "SSystem/SComponent/c_phase.h"
|
|
#include "dolphin/types.h"
|
|
#include "f_op/f_op_scene_tag.h"
|
|
#include "f_pc/f_pc_base.h"
|
|
#include "f_pc/f_pc_node.h"
|
|
#include "m_Do/m_Do_dvd_thread.h"
|
|
|
|
struct request_of_phase_process_class;
|
|
class mDoDvdThd_command_c;
|
|
|
|
typedef struct scene_process_profile_definition {
|
|
/* 0x00 */ node_process_profile_definition mBase;
|
|
/* 0x20 */ process_method_class* mpMtd; // Subclass methods
|
|
} scene_process_profile_definition;
|
|
|
|
class scene_class {
|
|
public:
|
|
/* 0x000 */ process_node_class mBase;
|
|
/* 0x1AC */ process_method_class * mpMtd;
|
|
/* 0x1B0 */ scene_tag_class mScnTg;
|
|
};
|
|
|
|
#endif
|