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

Reviewed-on: #11
This commit is contained in:
2025-10-23 08:17:11 +02:00
parent ccf44ede41
commit c168ae7dc0
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
}