feat(ui): UI now shows player names instead of their id

This commit is contained in:
2025-10-23 08:15:57 +02:00
parent ccf44ede41
commit e213c0706b
6 changed files with 10 additions and 264 deletions

View File

@@ -7,6 +7,7 @@ import java.util.UUID
trait PlayerSession {
def id: UUID
def name: String
def updatePlayer(event: SimpleEvent): Unit
}