summaryrefslogtreecommitdiff
path: root/src/port/hooks/list/ActionEvent.h
blob: 333c64536a83b41baaa74e0c6454b327e70b464e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;);