You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
384 B
19 lines
384 B
2 days ago
|
#include <catch2/catch_test_macros.hpp>
|
||
|
#include <fmt/core.h>
|
||
|
#include "gui.hpp"
|
||
|
#include "map.hpp"
|
||
|
#include "dinkyecs.hpp"
|
||
|
#include "worldbuilder.hpp"
|
||
|
#include "save.hpp"
|
||
|
#include "systems.hpp"
|
||
|
#include "spatialmap.hpp"
|
||
|
#include "levelmanager.hpp"
|
||
|
|
||
|
using namespace fmt;
|
||
|
using namespace components;
|
||
|
using std::string;
|
||
|
|
||
|
TEST_CASE("", "[levelmanager]") {
|
||
|
// empty test to get setup
|
||
|
}
|