12 lines
162 B
C#
12 lines
162 B
C#
namespace MRBot.PassiveTasks;
|
|
|
|
internal enum TaskType
|
|
{
|
|
Follow
|
|
}
|
|
|
|
internal interface IPassiveTask
|
|
{
|
|
TaskType Type { get; }
|
|
public void Execute();
|
|
} |