Change the UI of damage & fatigue dialogs.

This commit is contained in:
Thomas Andres Gomez 2025-06-15 14:51:40 +02:00
parent 741bb7cf25
commit 894d8db493
15 changed files with 354 additions and 223 deletions

View file

@ -22,6 +22,7 @@ data class APIResponse<T>(
Active,
Equip,
Damage,
Armor,
Fatigue,
Diminished,
Count,

View file

@ -9,6 +9,7 @@ sealed interface CharacterSheetEvent : SocketMessage, CharacterSheetIdMessage {
data class UpdateDamage(
override val characterSheetId: String,
override val timestamp: Long,
val armor: Int?,
val oldValue: Int,
val damage: Int,
) : CharacterSheetEvent