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
261 B
10 lines
261 B
1 day ago
|
--- 02_mazes_and_enemies/main.go 2025-10-06 11:53:40.243831800 -0400
|
||
|
+++ 03_pathing_enemies/main.go 2025-10-06 11:53:48.238068700 -0400
|
||
|
@@ -13,4 +13,6 @@
|
||
|
|
||
|
for game.HandleEvents() {
|
||
|
+ game.CalculatePaths()
|
||
|
+ game.EnemyPathing()
|
||
|
game.Render()
|
||
|
}
|