Files
SPT-Server-Build/Core/Helpers/Dialogue/Commando/SptCommandoCommands.cs
T
2025-01-11 21:01:32 +00:00

36 lines
843 B
C#

using Core.Annotations;
using Core.Helpers.Dialog.Commando.SptCommands;
using Core.Models.Eft.Dialog;
using Core.Models.Eft.Profile;
namespace Core.Helpers.Dialog.Commando;
[Injectable]
public class SptCommandoCommands : IChatCommand
{
public void RegisterSptCommandoCommand(ISptCommand command)
{
throw new NotImplementedException();
}
public string GetCommandPrefix()
{
throw new NotImplementedException();
}
public string GetCommandHelp(string command)
{
throw new NotImplementedException();
}
public List<string> GetCommands()
{
throw new NotImplementedException();
}
public string Handle(string command, UserDialogInfo commandHandler, string sesssionId, SendMessageRequest request)
{
throw new NotImplementedException();
}
}