A Go version of the https://lcthw.dev/learn-code-the-hard-way/curseyou-python-rogue that makes a tiny Rogue in Go.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
248 B
10 lines
248 B
1 day ago
|
--- 01_the_screen/main.go 2025-10-06 00:33:27.349824400 -0400
|
||
|
+++ 02_mazes_and_enemies/main.go 2025-10-06 11:53:40.243831800 -0400
|
||
|
@@ -8,4 +8,6 @@
|
||
|
|
||
|
game.NewMap()
|
||
|
+ dead_ends := game.NewMaze()
|
||
|
+ game.PlaceEnemies(dead_ends)
|
||
|
game.Render()
|
||
|
|