MrBot.Net/MRBot/PassiveTasks/IPassiveTask.cs
2023-12-08 15:20:12 -06:00

12 lines
162 B
C#

namespace MRBot.PassiveTasks;
internal enum TaskType
{
Follow
}
internal interface IPassiveTask
{
TaskType Type { get; }
public void Execute();
}