10 lines
263 B
C#
10 lines
263 B
C#
using System.Collections.Generic;
|
|
using Questionable.Model;
|
|
using Questionable.Model.Questing;
|
|
|
|
namespace Questionable.Controller.Steps;
|
|
|
|
internal interface ITaskFactory
|
|
{
|
|
IEnumerable<ITask> CreateAllTasks(Quest quest, QuestSequence sequence, QuestStep step);
|
|
}
|