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,12 @@
#pragma once
#include <SDL2/SDL.h>
#include "asset.h"
#include "sprite.h"
#include "utils.h"
#include <string>
#ifndef ITEM_H
#define ITEM_H
#include <SDL2/SDL_rect.h> // for SDL_Rect, SDL_Point
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <string> // for basic_string, string
#include <vector> // for vector
#include "utils.h" // for color_t
class Sprite;
class Texture;
struct item_t
{
@@ -58,6 +57,4 @@ public:
// Asigna los colores del objeto
void setColors(color_t col1, color_t col2);
};
#endif
}