JA VA! Nomes s'havia de fer les coses be i no ser un ansias

This commit is contained in:
2025-02-22 00:30:32 +01:00
parent f6098a479b
commit e361d295c1
39 changed files with 1053 additions and 1098 deletions

View File

@@ -44,9 +44,6 @@ struct res_room_t
class Resource
{
private:
// Objetos y punteros
options_t *options_; // Puntero a las opciones del juego
// Variables
std::vector<res_texture_t> textures_;
std::vector<res_animation_t> animations_;
@@ -56,8 +53,10 @@ private:
public:
// Constructor
Resource(options_t *options)
: options_(options) {}
Resource() = default;
// Destructor
~Resource() = default;
// Carga las texturas de una lista
void loadTextures(std::vector<std::string> list);