mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-01-12 12:19:12 +01:00
13 lines
212 B
C++
13 lines
212 B
C++
#ifndef __ZELDA_GAME_H__
|
|
#define __ZELDA_GAME_H__
|
|
|
|
namespace zelda64 {
|
|
// Quicksaving is disabled for now:
|
|
//void quicksave_save();
|
|
//void quicksave_load();
|
|
|
|
void enqueue_game_reset();
|
|
};
|
|
|
|
#endif
|