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

8 lines
220 B
C#

namespace Game.Events
{
/// <summary>
/// Indicates that the fight has completed.
/// </summary>
public sealed record MatchCompleted(ActionResult Result, bool ExtremeBravery, Reward Reward) : Event;
}