#pragma once #include "panel.hpp" #include "levelmanager.hpp" #include "constants.hpp" namespace gui { class StatusUI : public Panel { public: GameLevel $level; StatusUI(GameLevel level); void create_render(); void update_level(GameLevel &level) { $level = level; } }; }