mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
15 lines
220 B
C#
15 lines
220 B
C#
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the possible outcomes of the war.
|
|
/// </summary>
|
|
public enum WarResult
|
|
{
|
|
ComputerVictory,
|
|
|
|
PlayerVictory,
|
|
|
|
PeaceTreaty
|
|
}
|
|
}
|