nsmryan / RustRoguelike

This Rust Roguelike is a Roguelike written in Rust.
17 stars 3 forks source link

Map size #469

Open MicroChasm opened 2 years ago

MicroChasm commented 2 years ago

The game might play out better if the map was longer than it is tall. We will have to figure out how to implement this idea.

nsmryan commented 2 years ago

I pushed a version with different dimensions. You can set the dimensions in roguelike_core/src/constants.rs by changing MAP_WIDTH and MAP_HEIGHT.

You have to delete game.save between changes though.