mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
25 lines
313 B
C
25 lines
313 B
C
#ifndef M_PAUSE_H
|
|
#define M_PAUSE_H
|
|
|
|
#include "types.h"
|
|
#include "libu64/pad.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
typedef struct pause_t{
|
|
int enabled;
|
|
int timer;
|
|
}pause_t; // size = 0x8
|
|
|
|
|
|
void Pause_ct(pause_t* pause);
|
|
int Pause_proc(pause_t* pause, pad_t* pad);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|