mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
14 lines
235 B
C#
14 lines
235 B
C#
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different things the player can be awarded.
|
|
/// </summary>
|
|
public enum Reward
|
|
{
|
|
Nothing,
|
|
OneEar,
|
|
TwoEars,
|
|
CarriedFromRing
|
|
}
|
|
}
|