Toquetechant includes

This commit is contained in:
2025-02-20 13:34:18 +01:00
parent bcb2e96069
commit e1d6aff724
65 changed files with 615 additions and 495 deletions

View File

@@ -1,13 +1,11 @@
#pragma once
#include <SDL2/SDL.h>
#include "animatedsprite.h"
#include "asset.h"
#include "utils.h"
#include <string>
#ifndef ENEMY_H
#define ENEMY_H
#include <SDL2/SDL_rect.h> // for SDL_Rect
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <string> // for basic_string, string
#include "utils.h" // for palette_e, color_t
class AnimatedSprite;
struct animatedSprite_t;
// Estructura para pasar los datos de un enemigo
struct enemy_t
@@ -78,5 +76,3 @@ public:
// Asigna la paleta
void setPalette(palette_e pal);
};
#endif