13 lines
328 B
C#
13 lines
328 B
C#
using RobotAndDonkey.Game.Board;
|
|
using RobotAndDonkey.Game.GameState;
|
|
using System;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Results;
|
|
|
|
public record CurrencyResult(Guid RequestId, Currency NewCurrency) : Result(RequestId)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"Currency result: {NewCurrency}";
|
|
}
|
|
} |