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.

13 lines
303 B

--- 02_mazes_and_enemies/ui.go 2025-10-06 11:18:20.691714300 -0400
+++ 03_pathing_enemies/ui.go 2025-10-06 12:10:53.153215100 -0400
@@ -68,4 +68,9 @@
game.Screen.Clear()
game.DrawMap()
+
+ if SHOW_PATHS {
+ game.DrawPaths()
+ }
+
game.DrawEntity('@', game.Player.Pos, tcell.ColorYellow)