feat: finish game; store reports

This commit is contained in:
Ilia Denisov
2026-02-04 14:21:37 +02:00
parent abc98ee72f
commit 9a6d4112cf
6 changed files with 43 additions and 10 deletions
+3
View File
@@ -32,6 +32,9 @@ type Repo interface {
// SaveBombing stores all prodused bombings for turn t
SaveBombings(t uint, b []*game.Bombing) error
// SaveReport stores latest report for a race
SaveReport(t uint, rep *report.Report) error
}
type Controller struct {