11 lines
262 B
C#
11 lines
262 B
C#
using System;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Results;
|
|
|
|
public record NextGlitchResult(Guid RequestId, int NewNextGlitch) : Result(RequestId)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"Next glitch result: {NewNextGlitch}";
|
|
}
|
|
} |