mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
Simplify Bullfight (C#) folder structure
This commit is contained in:
24
17_Bullfight/csharp/Action.cs
Normal file
24
17_Bullfight/csharp/Action.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user