summaryrefslogtreecommitdiff
path: root/include/m_pause.h
blob: eb2ce762a863270465fc0f001f2384779f963f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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