Working mostly correct now, just need to tweak how it works more and work on connections.

This commit is contained in:
Zed A. Shaw 2024-09-28 03:58:26 -04:00
parent 61d2747441
commit e1ebea7451
2 changed files with 19 additions and 11 deletions

View file

@ -24,9 +24,9 @@ int main() {
using namespace ftxui;
std::string reset_position;
auto c = Canvas(150, 100);
auto c = Canvas(60 * 2, 50 * 4);
Map game_map(50, 20);
Map game_map(60, 50);
game_map.generate();
Matrix &input_map = game_map.input_map();
Matrix &walls = game_map.walls();