surrsurus / edgequest

Edgequest Season Two
Mozilla Public License 2.0
8 stars 1 forks source link

Dungeon generator should be returning Vec<Tile> instead of Vec<Vec<u8>> #35

Closed surrsurus closed 6 years ago

surrsurus commented 6 years ago

This also implies that Cellular Automata need to fundamentally change how they generate/check maps.

surrsurus commented 6 years ago

Well things have changed so much that this basically isn't a problem anymore, now things are just Grids which is a type alias for Vec<Vec<T>>, which is a much better solution.