Preparations to implement reading Exhibits and Pois from json

This commit is contained in:
2018-09-25 18:27:20 +02:00
parent 691149dd44
commit 0985518be2
11 changed files with 370 additions and 17 deletions

View File

@@ -1,8 +1,10 @@
namespace RothenburgAR.PointOfInterest
using System.Collections.Generic;
namespace RothenburgAR.PointOfInterest
{
public interface IPoiPreloader
{
bool CanLoadPoiDirectory(string poiDirectory);
PoiData PreloadPoi(string poiDirectory);
List<PoiData> PreloadPoi(string poiDirectory);
}
}