forked from chomp/ChompQuestVerifier
22 lines
502 B
C#
22 lines
502 B
C#
|
using QuestValidator.Helpers;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace AssortGenerator.Common.Helpers
|
|||
|
{
|
|||
|
public static class InputFileHelper
|
|||
|
{
|
|||
|
private static List<string> _inputFilePaths;
|
|||
|
|
|||
|
public static void SetInputFiles(string path)
|
|||
|
{
|
|||
|
_inputFilePaths = DiskHelpers.GetJsonFiles(path).ToList();
|
|||
|
}
|
|||
|
|
|||
|
public static IEnumerable<string> GetInputFilePaths()
|
|||
|
{
|
|||
|
return _inputFilePaths;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|