mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
8 lines
184 B
C#
8 lines
184 B
C#
namespace Game.Events
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the bull is charing the player.
|
|
/// </summary>
|
|
public sealed record BullCharging(int PassNumber) : Event;
|
|
}
|