Initial loot UI works to load an item by its world entity ID.

This commit is contained in:
Zed A. Shaw 2025-06-02 23:34:31 -04:00
parent f208ca946e
commit 4b34de2109
6 changed files with 67 additions and 20 deletions

View file

@ -11,10 +11,12 @@ namespace gui {
bool active = false;
guecs::UI $gui;
GameLevel $level;
std::vector<DinkyECS::Entity> contents;
LootUI(GameLevel level);
void init();
void update();
void render(sf::RenderWindow& window);
void update_level(GameLevel &level);
bool mouse(float x, float y, bool hover);