mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
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
|
|
}
|
|
}
|