Private
Public Access
1
0

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:
Sebastian Unterschütz
2026-01-01 19:23:09 +01:00
parent 5e6b8a2304
commit de64329ce4
12 changed files with 768 additions and 43 deletions

15
go.mod Normal file
View 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
)