establir la posicio i habitacio inicial de debug desde la consola

This commit is contained in:
2026-03-28 20:36:56 +01:00
parent 268763f162
commit 7483bf63c8
4 changed files with 48 additions and 0 deletions

View File

@@ -10,5 +10,9 @@ namespace GameControl {
inline std::function<void()> refresh_player_color;
// Registrada por Game::Game() — hace toggle del modo debug (equivale a tecla 0)
inline std::function<void()> toggle_debug_mode;
// Registrada por Game::Game() — guarda la habitación actual como habitación de inicio en debug.yaml
inline std::function<std::string()> set_initial_room;
// Registrada por Game::Game() — guarda la posición/flip actuales del jugador como posición de inicio en debug.yaml
inline std::function<std::string()> set_initial_pos;
}
#endif