You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
24 lines
569 B
C
24 lines
569 B
C
#ifndef RUMBLE_INIT_H
|
|
#define RUMBLE_INIT_H
|
|
|
|
#if ENABLE_RUMBLE
|
|
|
|
extern s32 gRumblePakTimer;
|
|
|
|
void init_rumble_pak_scheduler_queue(void);
|
|
void block_until_rumble_pak_free(void);
|
|
void release_rumble_pak_control(void);
|
|
void queue_rumble_data(s16 a0, s16 a1);
|
|
void func_sh_8024C89C(s16 a0);
|
|
u8 is_rumble_finished_and_queue_empty(void);
|
|
void reset_rumble_timers(void);
|
|
void reset_rumble_timers_2(s32 a0);
|
|
void func_sh_8024CA04(void);
|
|
void cancel_rumble(void);
|
|
void create_thread_6(void);
|
|
void rumble_thread_update_vi(void);
|
|
|
|
#endif // ENABLE_RUMBLE
|
|
|
|
#endif // RUMBLE_INIT_H
|