Files
af/include/m_pause.h
T
Maide fca5307ea9 m_play (#50)
* m_play

* Some warnings

* lots of function renames from the gcn version

* fix warnings

* format

* a

* a

* PR

* PR2

---------

Co-authored-by: Maide <you@example.com>
Co-authored-by: angie <angheloalf95@gmail.com>
2023-08-16 11:11:19 -07:00

16 lines
263 B
C

#ifndef M_PAUSE_H
#define M_PAUSE_H
#include "ultra64.h"
#include "libu64/pad.h"
typedef struct Pause {
/* 0x0 */ s32 enabled;
/* 0x4 */ s32 timer;
} Pause; // size = 0x8
void Pause_ct(Pause* pause);
s32 Pause_proc(Pause* pause, Input* input);
#endif