mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-16 12:45:20 -04:00
1ad444aa73
* More d_bg header improvements * Cleanup, use mtx inlines in more places * Added JntHit_c to headers * Started d_a_arrow
31 lines
703 B
C++
31 lines
703 B
C++
#ifndef D_JNT_HIT_H
|
|
#define D_JNT_HIT_H
|
|
|
|
#include "global.h"
|
|
#include "SSystem/SComponent/c_xyz.h"
|
|
#include "JSystem/J3DGraphAnimator/J3DModel.h"
|
|
|
|
struct __jnt_hit_data_c {
|
|
public:
|
|
/* 0x0 */ s16 mJointIndex;
|
|
/* 0x2 */ s16 field_0x2;
|
|
/* 0x4 */ f32 field_0x4;
|
|
/* 0x8 */ cXyz* field_0x8;
|
|
};
|
|
|
|
class JntHit_c {
|
|
public:
|
|
J3DModel* getModel() { return mpModel; }
|
|
|
|
/* 0x00 */ __jnt_hit_data_c* mpHitData;
|
|
/* 0x04 */ J3DModel* mpModel;
|
|
/* 0x08 */ cXyz* field_0x08;
|
|
/* 0x0C */ short* field_0x0c;
|
|
/* 0x10 */ short* field_0x10;
|
|
/* 0x14 */ short* mpJointIndexes;
|
|
/* 0x18 */ s16 mHitDataCount;
|
|
/* 0x1A */ u8 field_0x1A[0x20 - 0x1A];
|
|
};
|
|
|
|
#endif /* D_JNT_HIT_H */
|