mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
8 lines
189 B
C#
8 lines
189 B
C#
namespace Game.Events
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the player has survived being gored by the bull.
|
|
/// </summary>
|
|
public sealed record PlayerSurvived() : Event;
|
|
}
|