ddon-server/Arrowgene.Ddon.Rpc/Command/SpawnCommand.cs
2022-02-16 09:32:04 +08:00

19 lines
382 B
C#

using System;
using Arrowgene.Ddon.GameServer;
namespace Arrowgene.Ddon.Rpc.Command
{
public class SpawnCommand : IRpcCommand
{
public string Name => "SpawnCommand";
public SpawnCommand()
{
}
public RpcCommandResult Execute(DdonGameServer gameServer)
{
throw new NotImplementedException();
}
}
}