forked from liza/Questionable
14 lines
225 B
C#
14 lines
225 B
C#
using System.Collections.Generic;
|
|
using Questionable.Model;
|
|
|
|
namespace Questionable.Validation;
|
|
|
|
internal interface IQuestValidator
|
|
{
|
|
IEnumerable<ValidationIssue> Validate(Quest quest);
|
|
|
|
void Reset()
|
|
{
|
|
}
|
|
}
|