mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
15 lines
263 B
C#
15 lines
263 B
C#
namespace Hammurabi
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different performance ratings that the player can
|
|
/// achieve.
|
|
/// </summary>
|
|
public enum PerformanceRating
|
|
{
|
|
Disgraceful,
|
|
Bad,
|
|
Ok,
|
|
Terrific
|
|
}
|
|
}
|