mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
13 lines
310 B
C
13 lines
310 B
C
#ifndef __PLAY_PATCHES_H__
|
|
#define __PLAY_PATCHES_H__
|
|
|
|
#include "patches.h"
|
|
|
|
void debug_play_update(PlayState* play);
|
|
void camera_pre_play_update(PlayState* play);
|
|
void camera_post_play_update(PlayState* play);
|
|
void matrix_play_update(PlayState* play);
|
|
void autosave_post_play_update(PlayState* play);
|
|
|
|
#endif
|