servicepoint-tanks/tanks-backend/TanksServer/Models/Scores.cs
2024-04-21 14:32:29 +02:00

23 lines
463 B
C#

namespace TanksServer.Models;
internal sealed record class Scores(int Kills = 0, int Deaths = 0)
{
public int Kills { get; set; } = Kills;
public int Deaths { get; set; } = Deaths;
public double Ratio
{
get
{
if (Kills == 0)
return 0;
if (Deaths == 0)
return Kills;
return Kills / (double)Deaths;
}
}
public int WallsDestroyed { get; set; }
}