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

19 lines
376 B
C#

using Core.Annotations;
using Core.Models.Eft.Profile;
namespace Core.Helpers.Dialogue;
[Injectable]
public class CommandoDialogChatBot : AbstractDialogChatBot
{
public UserDialogInfo GetChatBot()
{
throw new NotImplementedException();
}
protected string GetUnrecognizedCommandMessage()
{
throw new NotImplementedException();
}
}