Files
basic-computer-games/43_Hammurabi/csharp/PerformanceRating.cs
2022-01-17 09:21:33 +02:00

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
}
}