mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-12 21:24:04 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
13 lines
215 B
C#
13 lines
215 B
C#
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different levels of risk for manoeuvres in the game.
|
|
/// </summary>
|
|
public enum RiskLevel
|
|
{
|
|
Low,
|
|
Medium,
|
|
High
|
|
}
|
|
}
|