I’m creating a console rpg to teach myself rust.Here’s the Git Hub repo of this project Let’s create a 2d grid world using tiles for the player to explore. First, we create a struct for the world containing a seed, width and height, a bool if it should wrap around, and a tile grid. Our […]
Categories
World generation
