ported from perforce
This commit is contained in:
18
RobotAndDonkey.Game/Execution/Requests/ImproveRequest.cs
Normal file
18
RobotAndDonkey.Game/Execution/Requests/ImproveRequest.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using RobotAndDonkey.Game.Execution.Commands;
|
||||
using RobotAndDonkey.Game.GameState;
|
||||
|
||||
namespace RobotAndDonkey.Game.Execution.Requests;
|
||||
|
||||
public sealed record ImproveRequest(Guid RequestId) : Request(RequestId)
|
||||
{
|
||||
public static ImproveRequest Create(CoreLoop coreLoop)
|
||||
{
|
||||
return new(Guid.NewGuid());
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "Improve request";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user