mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
44 lines
888 B
C++
44 lines
888 B
C++
#ifndef D_A_PPOLAMP_H
|
|
#define D_A_PPOLAMP_H
|
|
|
|
#include <types.h>
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-unsorted
|
|
* @class daPPolamp_c
|
|
* @brief P Poe Lamp
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daPPolamp_c : public fopAc_ac_c, public request_of_phase_process_class {
|
|
public:
|
|
virtual ~daPPolamp_c();
|
|
int create();
|
|
int execute();
|
|
int draw();
|
|
int Delete();
|
|
void setModelMtx();
|
|
void setPclModelMtx();
|
|
int createHeap();
|
|
void moveSwing();
|
|
void initParam();
|
|
|
|
private:
|
|
/* 0x574 */ J3DModel* mModel1;
|
|
/* 0x578 */ J3DModel* mModel2;
|
|
/* 0x57C */ mDoExt_bckAnm mBck;
|
|
/* 0x598 */ int field_0x598;
|
|
/* 0x59C */ s8 field_0x59c;
|
|
/* 0x59E */ s16 field_0x59e;
|
|
/* 0x5A0 */ u8 mSwingTimer;
|
|
/* 0x5A4 */ f32 field_0x5a4;
|
|
/* 0x5A8 */ f32 field_0x5a8;
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daPPolamp_c) == 0x5ac);
|
|
|
|
|
|
#endif /* D_A_PPOLAMP_H */
|