Add leaderboard functionality with Redis integration for scores. This includes a global leaderboard system, server-side score submission handling, and real-time player ranking updates. Refactor and improve collision logic and game state management for better player experience.
This commit is contained in:
15
go.mod
Normal file
15
go.mod
Normal file
@@ -0,0 +1,15 @@
|
||||
module git.zb-server.de/ZB-Server/EscapeFromTeacher
|
||||
|
||||
go 1.24.0
|
||||
|
||||
require (
|
||||
github.com/hajimehoshi/ebiten/v2 v2.9.6
|
||||
github.com/nats-io/nats.go v1.48.0
|
||||
github.com/redis/go-redis/v9 v9.17.2
|
||||
golang.org/x/image v0.31.0
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
||||
)
|
||||
Reference in New Issue
Block a user