Refactoring
Rust Roguelike Tutorial - Chapter 24 - Map Test Harness
· ☕ 1 min read
In order to learn about map building, it's a good idea to be able to see it in progress. This chapter builds a test harness that can `snapshot` each iteration of your map development, and play it as a small movie when a map is created.

Rust Roguelike Tutorial - Chapter 23 - Refactoring the Map Interface
· ☕ 1 min read
So far, we've only had one type of map. That's about to change - but to support it, we need to build a generic Map Builder interface. This chapter walks you through using Rust traits to build a generic interface, and use it to make a varied experience for your player.