diff options
Diffstat (limited to 'src/port/hooks/list/ActionEvent.h')
| -rw-r--r-- | src/port/hooks/list/ActionEvent.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/port/hooks/list/ActionEvent.h b/src/port/hooks/list/ActionEvent.h new file mode 100644 index 00000000..333c6453 --- /dev/null +++ b/src/port/hooks/list/ActionEvent.h @@ -0,0 +1,17 @@ +#pragma once + +#include "sf64player.h" +#include "port/hooks/impl/EventSystem.h" + +DEFINE_EVENT(PlayerActionBoostEvent, Player* player;); + +DEFINE_EVENT(PlayerActionBrakeEvent, Player* player;); + +DEFINE_EVENT(PlayerActionPreShootEvent, Player* player; LaserStrength laser;); +DEFINE_EVENT(PlayerActionPostShootEvent, Player* player; LaserStrength laser;); + +DEFINE_EVENT(PlayerActionPreShootChargedEvent, Player* player;); +DEFINE_EVENT(PlayerActionPostShootChargedEvent, Player* player;); + +DEFINE_EVENT(PlayerActionPreBombEvent, Player* player;); +DEFINE_EVENT(PlayerActionPostBombEvent, Player* player;);
\ No newline at end of file |
