Files
basic-computer-games/28_Combat/csharp/WarResult.cs
T

15 lines
220 B
C#

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