Socket classes for Hermes

This commit is contained in:
Tom
2024-06-24 22:31:45 +00:00
commit d8522584c4
26 changed files with 434 additions and 0 deletions

11
Quests/Tasks/QuestTask.cs Normal file
View File

@ -0,0 +1,11 @@
namespace HermesSocketLibrary.Quests
{
public interface IQuestTask
{
public string Name { get; }
public QuestType Type { get; set; }
public int Target { get; }
public abstract bool Process(long chatterId, string message, HashSet<string> emotes);
public abstract bool IsCompleted(int counter);
}
}