mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
20 lines
505 B
C#
20 lines
505 B
C#
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different levels of quality in the game.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Quality applies both to the bull and to the help received from the
|
|
/// toreadores and picadores. Note that the ordinal values are significant
|
|
/// (these are used in various calculations).
|
|
/// </remarks>
|
|
public enum Quality
|
|
{
|
|
Superb = 1,
|
|
Good = 2,
|
|
Fair = 3,
|
|
Poor = 4,
|
|
Awful = 5
|
|
}
|
|
}
|