add walls destroyed stat

This commit is contained in:
Vinzenz Schroeter 2024-04-19 13:34:56 +02:00
parent 0aac6f780b
commit 9cf4304845
4 changed files with 12 additions and 0 deletions

View file

@ -17,4 +17,6 @@ internal sealed record class Scores(int Kills = 0, int Deaths = 0)
return Kills / (double)Deaths;
}
}
public int WallsDestroyed { get; set; }
}