add shell count info for start of round

This commit is contained in:
2024-01-21 01:16:30 -06:00
parent 9b6b645cfe
commit 18e1793b16
2 changed files with 23 additions and 0 deletions

View File

@@ -26,3 +26,9 @@ type Player struct {
// Cuffs is whether the player is currently wearing cuffs.
Cuffs bool `json:"cuffs,omitempty"`
}
// ShellCounts is the JSON DTO for shell counts emitted at the start of a round.
type ShellCounts struct {
Live int `json:"live"`
Blank int `json:"blank"`
}