14 lines
370 B
C#
14 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.TrashCans;
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.RoutePlanningEngine
|
|
{
|
|
public interface IRoutePlanningEngine
|
|
{
|
|
IEnumerable<IStep> ReturnSteps();
|
|
}
|
|
} |