mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
14 lines
351 B
C#
14 lines
351 B
C#
namespace Game.Events
|
|
{
|
|
/// <summary>
|
|
/// Indicates that a new match has started.
|
|
/// </summary>
|
|
public sealed record MatchStarted(
|
|
Quality BullQuality,
|
|
Quality ToreadorePerformance,
|
|
Quality PicadorePerformance,
|
|
int ToreadoresKilled,
|
|
int PicadoresKilled,
|
|
int HorsesKilled) : Event;
|
|
}
|