You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
412 B
20 lines
412 B
7 months ago
|
#pragma once
|
||
|
#include "levelmanager.hpp"
|
||
6 months ago
|
#include "textures.hpp"
|
||
4 months ago
|
#include <guecs/ui.hpp>
|
||
6 months ago
|
#include "tilemap.hpp"
|
||
7 months ago
|
|
||
|
namespace gui {
|
||
6 months ago
|
class MapViewUI {
|
||
7 months ago
|
public:
|
||
6 months ago
|
guecs::UI $gui;
|
||
7 months ago
|
GameLevel $level;
|
||
6 months ago
|
textures::SpriteTexture $paper;
|
||
7 months ago
|
|
||
|
MapViewUI(GameLevel &level);
|
||
6 months ago
|
void init();
|
||
5 months ago
|
void render(sf::RenderWindow &window, int compass_dir);
|
||
7 months ago
|
void update_level(GameLevel &level);
|
||
|
};
|
||
|
}
|