Simplify Combat (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 09:12:50 +02:00
parent 827f2b0cb3
commit 66d4c9b8af
12 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
using System;
namespace Game
{
/// <summary>
/// Represents the armed forces for a country.
/// </summary>
public record ArmedForces
{
/// <summary>
/// Gets the number of men and women in the army.
/// </summary>
public int Army { get; init; }
/// <summary>
/// Gets the number of men and women in the navy.
/// </summary>
public int Navy { get; init; }
/// <summary>
/// Gets the number of men and women in the air force.
/// </summary>
public int AirForce { get; init; }
/// <summary>
/// Gets the total number of troops in the armed forces.
/// </summary>
public int TotalTroops => Army + Navy + AirForce;
/// <summary>
/// Gets the number of men and women in the given branch.
/// </summary>
public int this[MilitaryBranch branch] =>
branch switch
{
MilitaryBranch.Army => Army,
MilitaryBranch.Navy => Navy,
MilitaryBranch.AirForce => AirForce,
_ => throw new ArgumentException("INVALID BRANCH")
};
}
}