Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 787 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 787 Bytes

Dungeon Crawler Part Deux

This is an adaptation of the Rust program found in my dungeoncrawl repository; I coded both by following along in Hands-on Rust by Herbert Wolverson.

This variation of the dungeon crawler uses Legion, a high performance Entity Component System (ECS) found for free in the Rust crates library. This implementation also utilizes "fearless concurrency" to make the game multi-threaded.

I also added the ability to use the W, A, S, and D keys in lieu of the arrow keys for users who have keyboards without built-in arrow keys.

This is a work in progress, and more documentation will be added as I make progress on the code.