This commit is contained in:
2025-10-27 18:35:53 +01:00
parent b1dca32a5b
commit 3179a08dac
63 changed files with 686 additions and 693 deletions

View File

@@ -59,8 +59,8 @@ class Enemy {
void update();
// Devuelve el rectangulo que contiene al enemigo
SDL_FRect getRect();
auto getRect() -> SDL_FRect;
// Obtiene el rectangulo de colision del enemigo
SDL_FRect& getCollider();
auto getCollider() -> SDL_FRect&;
};