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,24 +1,21 @@
#pragma once
#include <SDL2/SDL.h>
#include "animatedsprite.h"
#include "asset.h"
#include "input.h"
#include "debug.h"
#include "input.h"
#include "resource.h"
#include "screen.h"
#include "sprite.h"
#include "text.h"
#include "utils.h"
#include "const.h"
#include "item_tracker.h"
#include "room_tracker.h"
#include "room.h"
#include "scoreboard.h"
#ifndef DEMO_H
#define DEMO_H
#include <SDL2/SDL_events.h> // for SDL_Event
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <SDL2/SDL_stdinc.h> // for Uint32
#include <string> // for string, basic_string
#include <vector> // for vector
#include "scoreboard.h" // for board_t
class Asset;
class Debug;
class Input;
class ItemTracker;
class Resource;
class Room;
class Screen;
class Text;
struct options_t;
struct section_t;
class Demo
{
@@ -88,5 +85,3 @@ public:
// Bucle para el juego
void run();
};
#endif