ac_ball link

This commit is contained in:
Prakxo
2024-01-09 18:38:12 +01:00
parent f279c6c962
commit a0e63ba650
14 changed files with 967 additions and 156 deletions
+24
View File
@@ -8,6 +8,30 @@
extern "C" {
#endif
typedef void (*BALL_PROCESS_PROC)(ACTOR*, GAME*);
typedef struct actor_ball_s {
ACTOR actor_class;
ClObjPipe_c ball_pipe;
u8 pad[0x40];
xyz_t bgpos;
ACTOR* collider;
BALL_PROCESS_PROC process_proc;
int unk1E4;
f32 ball_y;
f32 ball_max_speed;
f32 ball_acceleration;
f32 ball_speed;
int type;
s16 timer;
s16 unk1FE;
s_xyz angle;
s16 unk206;
s16 unk208;
s16 unk20A;
s16 unk20C;
} BALL_ACTOR;
extern ACTOR_PROFILE Ball_Profile;
#ifdef __cplusplus