18 lines
442 B
C#
18 lines
442 B
C#
using System;
|
|
using RobotAndDonkey.Game.Execution.Commands;
|
|
using RobotAndDonkey.Game.GameState;
|
|
|
|
namespace RobotAndDonkey.Game.Execution.Requests;
|
|
|
|
public sealed record ExecuteProgramRequest(Guid RequestId) : Request(RequestId)
|
|
{
|
|
public static ExecuteProgramRequest Create(CoreLoop coreLoop)
|
|
{
|
|
return new(Guid.NewGuid());
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "Execute program request";
|
|
}
|
|
} |