Add initial project structure for "Escape From Teacher" game: server, client, level editor, and asset framework. Includes game rendering, physics, WebSocket server, NATS integration, and asset management setup.
This commit is contained in:
21
cmd/client/go.mod
Normal file
21
cmd/client/go.mod
Normal file
@@ -0,0 +1,21 @@
|
||||
module git.zb-server.de/ZB-Server/EscapeFromTeacher/client
|
||||
|
||||
go 1.25.5
|
||||
|
||||
require (
|
||||
github.com/hajimehoshi/ebiten/v2 v2.9.6
|
||||
github.com/nats-io/nats.go v1.47.0
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/ebitengine/gomobile v0.0.0-20250923094054-ea854a63cce1 // indirect
|
||||
github.com/ebitengine/hideconsole v1.0.0 // indirect
|
||||
github.com/ebitengine/purego v0.9.0 // indirect
|
||||
github.com/jezek/xgb v1.1.1 // indirect
|
||||
github.com/klauspost/compress v1.18.0 // indirect
|
||||
github.com/nats-io/nkeys v0.4.11 // indirect
|
||||
github.com/nats-io/nuid v1.0.1 // indirect
|
||||
golang.org/x/crypto v0.37.0 // indirect
|
||||
golang.org/x/sync v0.17.0 // indirect
|
||||
golang.org/x/sys v0.36.0 // indirect
|
||||
)
|
||||
Reference in New Issue
Block a user