Algos directory is setup.

This commit is contained in:
Zed A. Shaw 2026-02-27 12:07:01 -05:00
parent 0064664556
commit b91e9ffaf6
38 changed files with 46 additions and 47 deletions

View file

@ -3,7 +3,7 @@
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Graphics/Font.hpp>
#include <guecs/ui.hpp>
#include "stats.hpp"
#include "algos/stats.hpp"
namespace gui {
class DebugUI {

View file

@ -1,7 +1,7 @@
#pragma once
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/System/Clock.hpp>
#include "stats.hpp"
#include "algos/stats.hpp"
#include <guecs/ui.hpp>
#include "gui/overlay_ui.hpp"
#include "gui/debug_ui.hpp"

View file

@ -3,9 +3,9 @@
#include <string>
#include "dbc.hpp"
#include "components.hpp"
#include "rand.hpp"
#include "algos/rand.hpp"
#include "systems.hpp"
#include "rand.hpp"
#include "algos/rand.hpp"
#include <codecvt>
#include <iostream>
#include <fmt/xchar.h>

View file

@ -3,9 +3,9 @@
#include <string>
#include "dbc.hpp"
#include "components.hpp"
#include "rand.hpp"
#include "algos/rand.hpp"
#include "systems.hpp"
#include "rand.hpp"
#include "algos/rand.hpp"
#include <codecvt>
#include <iostream>
#include <memory>

View file

@ -1,6 +1,6 @@
#include "gui/ritual_ui.hpp"
#include <guecs/ui.hpp>
#include "rand.hpp"
#include "algos/rand.hpp"
#include "sound.hpp"
#include "events.hpp"
#include "game_level.hpp"

View file

@ -1,7 +1,7 @@
#include "gui/status_ui.hpp"
#include "components.hpp"
#include <guecs/ui.hpp>
#include "rand.hpp"
#include "algos/rand.hpp"
#include <fmt/xchar.h>
#include "gui/guecstra.hpp"
#include "systems.hpp"