Zelda64Recomp/include/zelda_game.h

13 lines
212 B
C
Raw Normal View History

2024-06-05 01:12:43 +02:00
#ifndef __ZELDA_GAME_H__
#define __ZELDA_GAME_H__
namespace zelda64 {
2024-11-24 22:42:09 +01:00
// Quicksaving is disabled for now:
//void quicksave_save();
//void quicksave_load();
void enqueue_game_reset();
2024-06-05 01:12:43 +02:00
};
#endif