Move everything under the guecs/ directory in src/ so that it meshes better with other projects.

This commit is contained in:
Zed A. Shaw 2025-05-08 11:20:00 -04:00
parent f520f0bade
commit 3bc05ad164
30 changed files with 74 additions and 73 deletions

View file

@ -1,5 +1,5 @@
#include <catch2/catch_test_macros.hpp>
#include "dbc.hpp"
#include "guecs/dbc.hpp"
using namespace dbc;

View file

@ -1,9 +1,10 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include "guecs.hpp"
#include "guecs/ui.hpp"
#include <fmt/xchar.h>
using namespace guecs;
TEST_CASE("prototype one gui", "[ecs-gui]") {
// accidentally gutted, will recover later
}

View file

@ -1,4 +1,4 @@
#include "lel.hpp"
#include "guecs/lel.hpp"
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>

View file

@ -1,7 +1,7 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>
#include "sfmlbackend/shaders.hpp"
#include "guecs/sfml/shaders.hpp"
using namespace fmt;

View file

@ -1,7 +1,7 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>
#include "sfmlbackend/sound.hpp"
#include "guecs/sfml/sound.hpp"
using namespace fmt;

View file

@ -1,7 +1,7 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>
#include "sfmlbackend/textures.hpp"
#include "guecs/sfml/textures.hpp"
using namespace fmt;