mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 15:37:51 -08:00
8 lines
220 B
C#
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;
|
|
}
|