2019-03-13 14:19:38 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-04-22 09:24:16 +02:00
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans;
|
2019-03-13 14:19:38 +01:00
|
|
|
|
|
2019-04-22 09:24:16 +02:00
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.RoutePlanningEngine
|
2019-03-13 14:19:38 +01:00
|
|
|
|
{
|
2019-03-13 15:31:33 +01:00
|
|
|
|
public interface IRoutePlanningEngine
|
2019-04-08 16:43:52 +02:00
|
|
|
|
{
|
2019-04-21 01:28:38 +02:00
|
|
|
|
IEnumerable<IStep> ReturnSteps();
|
2019-03-13 14:19:38 +01:00
|
|
|
|
}
|
2019-04-08 16:43:52 +02:00
|
|
|
|
}
|