Add character portrait display feature.
This commit is contained in:
parent
50c34c8520
commit
67e154ed4a
18 changed files with 214 additions and 20 deletions
|
|
@ -0,0 +1,13 @@
|
|||
package com.pixelized.shared.lwa.protocol.websocket
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
sealed interface GameEvent : SocketMessage {
|
||||
|
||||
@Serializable
|
||||
data class DisplayPortrait(
|
||||
override val timestamp: Long,
|
||||
val characterSheetId: String?,
|
||||
) : GameEvent
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue