Going into a well triggers a little 'loading screen' that's currently faked. Click on it to continue.

This commit is contained in:
Zed A. Shaw 2025-02-25 03:01:07 -05:00
parent 9d49c6a30b
commit e9accf14e6
8 changed files with 35 additions and 6 deletions

View file

@ -11,6 +11,7 @@ namespace gui {
class MainUI {
public:
bool $show_level = false;
bool $needs_render = true;
Point $player{0,0};
Stats $stats;
@ -38,6 +39,7 @@ namespace gui {
void draw();
void dirty();
void show_level();
void dead_entity(DinkyECS::Entity entity);
};
}