forked from zeldaret/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathd_a_e_tk_ball.h
More file actions
45 lines (40 loc) · 1.29 KB
/
d_a_e_tk_ball.h
File metadata and controls
45 lines (40 loc) · 1.29 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef D_A_E_TK_BALL_H
#define D_A_E_TK_BALL_H
#include "f_op/f_op_actor.h"
#include "d/d_cc_d.h"
/**
* @ingroup actors-enemies
* @class e_tk_ball_class
* @brief Fire/Water Toadpoli Ball
*
* @details Projectiles spat by Toadpoli enemies at the player.
* Two types exist: fire and water. Link can deflect these balls
* with his shield or slice them with his sword. When deflected
* while locked on to the enemy, they will return to the Toadpoli
* that fired them.
*/
class e_tk_ball_class : public fopEn_enemy_c {
public:
/* 0x5AC */ request_of_phase_process_class mPhaseReq;
/* 0x5B4 */ u8 mType;
/* 0x5B5 */ u8 mArg1;
/* 0x5B8 */ J3DModel* mpModel;
/* 0x5BC */ Z2SoundObjSimple mSound;
/* 0x5DC */ s16 mLifetime;
/* 0x5DE */ s16 mAction;
/* 0x5E0 */ s16 mMode;
/* 0x5E2 */ s16 mActionTimer[2];
/* 0x5E6 */ s16 mInvincibilityTimer;
/* 0x5E8 */ cXyz mInitalPosition;
/* 0x5F4 */ f32 mInitalDistance;
/* 0x5F8 */ f32 mArcHeight;
/* 0x5FC */ dCcD_Stts mStts;
/* 0x638 */ dCcD_Sph mAtSph;
/* 0x770 */ dCcD_Sph mTgSph;
/* 0x8A8 */ u32 mParticleKey[2];
/* 0x8B0 */ cXyz mParticleDirection;
/* 0x8BC */ cXyz mPreviousPosition;
/* 0x8C8 */ bool mSuspended;
};
STATIC_ASSERT(sizeof(e_tk_ball_class) == 0x8CC);
#endif /* D_A_E_TK_BALL_H */