Files
basic-computer-games/17_Bullfight/csharp/Reward.cs
2022-01-17 09:07:59 +02:00

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