mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
19 lines
382 B
C#
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();
|
|
}
|
|
}
|
|
}
|