You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
447 B
19 lines
447 B
using Models.Game;
|
|
|
|
namespace Models.Events
|
|
{
|
|
/// <summary>
|
|
/// Event arguments for when an operation is chosen.
|
|
/// </summary>
|
|
public class OperationChosenEventArgs : EventArgs
|
|
{
|
|
public Operation Operation { get; }
|
|
public int Result { get; }
|
|
|
|
public OperationChosenEventArgs(Operation operation, int result)
|
|
{
|
|
Operation = operation;
|
|
Result = result;
|
|
}
|
|
}
|
|
} |