mirror of https://github.com/zeldaret/tp.git
31 lines
950 B
C++
31 lines
950 B
C++
#ifndef F_OP_ACTOR_H_
|
|
#define F_OP_ACTOR_H_
|
|
|
|
#include "JSystem/JKernel/JKRSolidHeap/JKRSolidHeap.h"
|
|
#include "SComponent/c_sxyz.h"
|
|
#include "SComponent/c_xyz.h"
|
|
#include "f/f_pc/f_pc_base.h"
|
|
|
|
class fopAc_ac_c : public base_process_class {
|
|
public:
|
|
/* 0x0B8 */ u8 unk_0x0B8[0xF0 - 0xB8];
|
|
/* 0x0F0 */ JKRSolidHeap* unk_0x0F0;
|
|
/* 0x0F4 */ u8 unk_0x0F4[0x4D0 - 0xF4];
|
|
/* 0x4D0 */ cXyz mPosition;
|
|
/* 0x4DC */ csXyz mAngle;
|
|
/* 0x4E2 */ u8 unk_0x4E2[0x4E6 - 0x4E2];
|
|
/* 0x4E6 */ s16 unk_0x4E6;
|
|
/* 0x4E8 */ u8 unk_0x4E8[0x4F8 - 0x4E8];
|
|
/* 0x4F8 */ cXyz mSpeed;
|
|
/* 0x504 */ u8 unk_0x504[4];
|
|
/* 0x508 */ cXyz mCullMin;
|
|
/* 0x514 */ cXyz mCullMax;
|
|
/* 0x520 */ u8 unk_0x520[0xC];
|
|
/* 0x52C */ f32 mSpeedF;
|
|
/* 0x530 */ f32 mGravity;
|
|
/* 0x534 */ f32 mMaxFallSpeed;
|
|
const cXyz& getPosition() const { return mPosition; }
|
|
const csXyz& getAngle() const { return mAngle; }
|
|
}; // Size: unknown
|
|
|
|
#endif |