summaryrefslogtreecommitdiff
path: root/src/port/hooks/list/ActionEvent.h
blob: 57c49644ddf1e461aa7be4673cea1c2e30fa59ec (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; PlayerShot* shot;);

DEFINE_EVENT(PlayerActionPreShootChargedEvent, Player* player;);
DEFINE_EVENT(PlayerActionPostShootChargedEvent, Player* player;);

DEFINE_EVENT(PlayerActionPreBombEvent, Player* player;);
DEFINE_EVENT(PlayerActionPostBombEvent, Player* player;);