ported from perforce
This commit is contained in:
11
RobotAndDonkey.Game/Execution/Results/ProgramResult.cs
Normal file
11
RobotAndDonkey.Game/Execution/Results/ProgramResult.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace RobotAndDonkey.Game.Execution.Results;
|
||||
|
||||
public record ProgramResult(Guid RequestId, int NewProgram) : Result(RequestId)
|
||||
{
|
||||
public override string ToString()
|
||||
{
|
||||
return $"Program result: {NewProgram}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user