mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-07 20:01:13 -04:00
23 lines
753 B
C
23 lines
753 B
C
#ifndef IN_GAME_MPSTATS_H
|
|
#define IN_GAME_MPSTATS_H
|
|
#include <ultra64.h>
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
void mpstatsIncrementPlayerShotCount(struct gset *gset, s32 region);
|
|
void mpstatsIncrementPlayerShotCount2(struct gset *gset, s32 region);
|
|
void mpstats0f0b0520(void);
|
|
s32 mpstatsGetPlayerShotCountByRegion(u32 type);
|
|
void mpstatsIncrementTotalKillCount(void);
|
|
void mpstatsIncrementTotalKnockoutCount(void);
|
|
void mpstatsDecrementTotalKnockoutCount(void);
|
|
u8 mpstatsGetTotalKnockoutCount(void);
|
|
u32 mpstatsGetTotalKillCount(void);
|
|
void mpstatsRecordPlayerKill(void);
|
|
s32 mpstatsGetPlayerKillCount(void);
|
|
void mpstatsRecordPlayerDeath(void);
|
|
void mpstatsRecordPlayerSuicide(void);
|
|
void mpstatsRecordDeath(s32 aplayernum, s32 vplayernum);
|
|
|
|
#endif
|