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.
8 lines
331 B
8 lines
331 B
--- 02_mazes_and_enemies/game.go 2025-10-06 10:40:37.923662000 -0400
|
|
+++ 03_pathing_enemies/game.go 2025-10-06 12:44:21.971080300 -0400
|
|
@@ -13,4 +13,5 @@
|
|
game.Enemies = make(map[Position]*Enemy)
|
|
game.Level = make(Map, height, height)
|
|
+ game.Paths = make(Paths, height, height)
|
|
game.Player = Enemy{20, Position{1,1}, 4}
|
|
|
|
|