Simplify Bullfight (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 09:07:59 +02:00
parent ae9a0b1c5e
commit 827f2b0cb3
18 changed files with 5 additions and 5 deletions

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