A slightly working flood iterator and a working compass iterator.

This commit is contained in:
Zed A. Shaw 2024-12-17 17:32:27 -05:00
parent 043c0d91df
commit 1295e9631d
6 changed files with 214 additions and 4 deletions

View file

@ -31,7 +31,6 @@ void System::lighting(DinkyECS::World &world, Map &game_map, LightRender &light,
world.query<Position, LightSource>([&](const auto &ent, auto &position, auto &lightsource) {
light.render_light(lightsource, position.location);
});
}
void System::enemy_pathing(DinkyECS::World &world, Map &game_map, Player &player) {