mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-12-25 12:21:49 +01:00
13 lines
216 B
C++
13 lines
216 B
C++
#ifndef __ZELDA_GAME_H__
|
|
#define __ZELDA_GAME_H__
|
|
|
|
namespace zelda64 {
|
|
// Quicksaving is disabled for now:
|
|
//void quicksave_save();
|
|
//void quicksave_load();
|
|
|
|
extern bool should_game_reset;
|
|
};
|
|
|
|
#endif
|