hermes-socket-library/Quests/Tasks/QuestTask.cs

11 lines
348 B
C#
Raw Permalink Normal View History

2024-06-24 18:31:45 -04:00
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);
}
}