chanclot havia inclos un include SDL2

This commit is contained in:
2025-11-23 12:32:12 +01:00
parent cb26e7194c
commit f5b60ebbaf
2 changed files with 3 additions and 6 deletions

View File

@@ -5,5 +5,5 @@ constexpr const char* NAME = "pollo";
constexpr const char* LONG_NAME = "Los pollos hermanos"; constexpr const char* LONG_NAME = "Los pollos hermanos";
constexpr const char* VERSION = "0.1"; constexpr const char* VERSION = "0.1";
constexpr const char* COPYRIGHT = "@2025 JailDesigner"; constexpr const char* COPYRIGHT = "@2025 JailDesigner";
constexpr const char* GIT_HASH = "d995680"; constexpr const char* GIT_HASH = "cb26e71";
} // namespace Project } // namespace Project

View File

@@ -3,10 +3,9 @@
* @brief Gestión de colores de la paleta Amstrad CPC * @brief Gestión de colores de la paleta Amstrad CPC
*/ */
#ifndef COLOR_HPP #pragma once
#define COLOR_HPP
#include <SDL2/SDL_stdinc.h> #include <SDL3/SDL.h>
#include <string> #include <string>
@@ -90,5 +89,3 @@ class Color {
*/ */
static auto fromString(const std::string& name) -> Uint8; static auto fromString(const std::string& name) -> Uint8;
}; };
#endif // COLOR_HPP