Add action to the character sheet detail panel.

This commit is contained in:
Thomas Andres Gomez 2025-02-27 15:36:07 +01:00
parent b6d02c21be
commit 1fe75062b7
14 changed files with 469 additions and 56 deletions

View file

@ -6,8 +6,8 @@ import kotlinx.serialization.Serializable
data class RollMessage(
val characterId: String,
val skillLabel: String,
val resultLabel: String?,
val rollDifficulty: String?,
val resultLabel: String? = null,
val rollDifficulty: String? = null,
val rollValue: Int,
val rollSuccessLimit: Int?,
val rollSuccessLimit: Int? = null,
) : MessagePayload