Files
basic-computer-games/17_Bullfight/csharp/Reward.cs
T

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