"PlayerQuit" hook

This commit is contained in:
Prisima the Fox 2016-10-20 22:23:50 -04:00
parent 3843533c24
commit cb62f08364
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ enum hook {
hook_PlayerMsg,
hook_HurtMsg,
hook_PlayerSpawn,
hook_PlayerQuit,
hook_MAX // last hook
};
@ -77,5 +78,6 @@ boolean LUAh_LinedefExecute(line_t *line, mobj_t *mo, sector_t *sector); // Hook
boolean LUAh_PlayerMsg(int source, int target, int flags, char *msg); // Hook for chat messages
boolean LUAh_HurtMsg(player_t *player, mobj_t *inflictor, mobj_t *source); // Hook for hurt messages
#define LUAh_PlayerSpawn(player) LUAh_PlayerHook(player, hook_PlayerSpawn) // Hook for G_SpawnPlayer
boolean LUAh_PlayerQuit(player_t *plr, int reason); // Hook for player quitting
#endif