mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
10 lines
213 B
C#
10 lines
213 B
C#
using Arrowgene.Ddon.GameServer;
|
|
|
|
namespace Arrowgene.Ddon.Rpc.Command
|
|
{
|
|
public interface IRpcCommand
|
|
{
|
|
RpcCommandResult Execute(DdonGameServer gameServer);
|
|
string Name { get; }
|
|
}
|
|
}
|