Files
basic-computer-games/17_Bullfight/csharp/Events/PlayerGored.cs
2022-01-17 09:07:59 +02:00

8 lines
207 B
C#

namespace Game.Events
{
/// <summary>
/// Indicates that the player has been gored by the bull.
/// </summary>
public sealed record PlayerGored(bool Panicked, bool FirstGoring) : Event;
}