Private
Public Access
1
0

Introduce core components for "Escape From Teacher" game: server, client, physics, asset system, and protocol definitions. Add Docker-Compose setup for Redis and NATS infrastructure.

This commit is contained in:
Sebastian Unterschütz
2026-01-01 15:21:18 +01:00
commit 3099ac42c0
9 changed files with 1384 additions and 0 deletions

6
pkg/game/assets.go Normal file
View File

@@ -0,0 +1,6 @@
package game
// Manifest ist die ganze Konfigurationsdatei
type Manifest struct {
Assets map[string]AssetDefinition `json:"assets"`
}