2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.Console;
|
|
|
|
|
|
using Robust.Shared.Interfaces.Network;
|
2019-04-13 09:45:09 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Interfaces.Chat
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IChatCommand : ICommand
|
|
|
|
|
|
{
|
|
|
|
|
|
void Execute(IChatManager manager, INetChannel client, params string[] args);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|