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.
17 lines
542 B
17 lines
542 B
--- 03_pathing_enemies/go.mod 2025-09-29 00:25:59.856341100 -0400
|
|
+++ 04_combat/go.mod 2025-10-06 00:24:48.519375000 -0400
|
|
@@ -3,12 +3,10 @@
|
|
go 1.25.1
|
|
|
|
-require (
|
|
- github.com/gdamore/tcell/v2 v2.9.0
|
|
- github.com/mattn/go-runewidth v0.0.16
|
|
-)
|
|
+require github.com/gdamore/tcell/v2 v2.9.0
|
|
|
|
require (
|
|
github.com/gdamore/encoding v1.0.1 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
+ github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
golang.org/x/sys v0.35.0 // indirect
|
|
|