Files
basic-computer-games/17_Bullfight/csharp/src/ActionResult.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

45 lines
968 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Game
{
/// <summary>
/// Enumerates the different possible outcomes of the player's action.
/// </summary>
public enum ActionResult
{
/// <summary>
/// The fight continues.
/// </summary>
FightContinues,
/// <summary>
/// The player fled from the ring.
/// </summary>
PlayerFlees,
/// <summary>
/// The bull has gored the player.
/// </summary>
BullGoresPlayer,
/// <summary>
/// The bull killed the player.
/// </summary>
BullKillsPlayer,
/// <summary>
/// The player killed the bull.
/// </summary>
PlayerKillsBull,
/// <summary>
/// The player attempted to kill the bull and both survived.
/// </summary>
Draw
}
}