First round of cleanup. dnd_loot.

This commit is contained in:
Zed A. Shaw 2025-06-25 14:28:35 -04:00
parent 689bb150c6
commit f668ff6b7a
9 changed files with 169 additions and 38 deletions

View file

@ -24,6 +24,8 @@ TEST_CASE("confirm component loading works", "[components]") {
fmt::println("TEST COMPONENT: {} from file {}", key, test_data);
auto ent = world.entity();
components::configure_entity(world, ent, components);
auto tile = components::get<Tile>(components[0]);
REQUIRE(tile.display != L' ');
}
}
}