11 lines
313 B
C#
11 lines
313 B
C#
using RobotAndDonkey.Game.Utils;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Results;
|
|
|
|
public record ModifyCellResult(Guid RequestId, Board.Board Board, EModifierId Modifier, Hex Hex) : Result(RequestId)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"Modify Cell result: {Hex} {Modifier}";
|
|
}
|
|
} |