Get the FSM for the GUIworked out and fix the rendering so it works right.

This commit is contained in:
Zed A. Shaw 2026-01-18 23:12:19 -05:00
parent 81cbc24064
commit d81e127686
3 changed files with 95 additions and 61 deletions

View file

@ -22,7 +22,6 @@ namespace gui {
$window(sf::VideoMode({SCREEN_WIDTH, SCREEN_HEIGHT}), "Zed's Raycaster Thing"),
$main_ui($window),
$combat_ui(false),
$font{FONT_FILE_NAME},
$dnd_loot($status_ui, $loot_ui, $window, $router)
{
$window.setVerticalSyncEnabled(VSYNC);

View file

@ -44,7 +44,6 @@ namespace gui {
StatusUI $status_ui;
MapViewUI $map_ui;
LootUI $loot_ui;
sf::Font $font;
gui::routing::Router $router;
DNDLoot $dnd_loot;