Files
basic-computer-games/28_Combat/csharp/WarResult.cs
2022-01-17 09:12:50 +02:00

15 lines
220 B
C#

namespace Game
{
/// <summary>
/// Enumerates the possible outcomes of the war.
/// </summary>
public enum WarResult
{
ComputerVictory,
PlayerVictory,
PeaceTreaty
}
}