24 lines
499 B
C#
24 lines
499 B
C#
using System;
|
|
using Questionable.Model;
|
|
using Questionable.Model.Questing;
|
|
|
|
namespace Questionable.Controller.Steps.Interactions;
|
|
|
|
internal static class PurchaseItem
|
|
{
|
|
internal sealed class Factory : SimpleTaskFactory
|
|
{
|
|
public override ITask? CreateTask(Quest quest, QuestSequence sequence, QuestStep step)
|
|
{
|
|
if (step.InteractionType != EInteractionType.PurchaseItem)
|
|
{
|
|
return null;
|
|
}
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|
|
internal sealed class PurchaseRequest
|
|
{
|
|
}
|
|
}
|