Files
KnockOutWhist-Web/knockoutwhistweb/app/controllers/sessions/PlayerSession.scala

13 lines
193 B
Scala

package controllers.sessions
import de.knockoutwhist.utils.events.SimpleEvent
import java.util.UUID
trait PlayerSession {
def id: UUID
def updatePlayer(event: SimpleEvent): Unit
}