mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 20:34:32 -08:00
8 lines
207 B
C#
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;
|
|
}
|