atomises rooms and corridors

- room sorter
- rounding room corners
- dogleg and bsp corridors
- room exploder
This commit is contained in:
Llywelwyn 2023-07-23 16:44:14 +01:00
parent b7b2061228
commit 2ceb20a822
9 changed files with 411 additions and 59 deletions

View file

@ -50,14 +50,14 @@ pub fn delete_the_dead(ecs: &mut World) {
.append("The")
.npc_name(&victim_name.name)
.colour(rltk::WHITE)
.append("was destroyed!")
.append("is destroyed!")
.log();
} else {
gamelog::Logger::new()
.append("The")
.npc_name(&victim_name.name)
.colour(rltk::WHITE)
.append("died!")
.append("dies!")
.log();
}
}