Continue amb BalloonManager

This commit is contained in:
2024-11-07 20:56:56 +01:00
parent 0e527ff9d9
commit 2fb7e88e4b
12 changed files with 226 additions and 178 deletions
+4 -2
View File
@@ -16,10 +16,12 @@ namespace Stage
: number(number), power_to_complete(power_to_complete), min_menace(min_menace), max_menace(max_menace) {}
};
std::vector<Stage> stages; // Variable con los datos de cada pantalla
extern std::vector<Stage> stages; // Variable con los datos de cada pantalla
extern int power; // Poder acumulado en la fase
extern int number; // Fase actual
// Devuelve una fase
Stage get(int index) { return stages.at(index); }
Stage get(int index);
// Inicializa las fases del juego
void init();