Files
basic-computer-games/17_Bullfight/csharp/src/Action.cs
Chris Reuter d26dbf036a Removed spaces from top-level directory names.
Spaces tend to cause annoyances in a Unix-style shell environment.
This change fixes that.
2021-11-21 18:30:21 -05:00

25 lines
482 B
C#

namespace Game
{
/// <summary>
/// Enumerates the different actions that the player can take on each round
/// of the fight.
/// </summary>
public enum Action
{
/// <summary>
/// Dodge the bull.
/// </summary>
Dodge,
/// <summary>
/// Kill the bull.
/// </summary>
Kill,
/// <summary>
/// Freeze in place and don't do anything.
/// </summary>
Panic
}
}