mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
25 lines
482 B
C#
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
|
|
}
|
|
}
|