Files
robot_intelligence_final_pr…/ConsoleApp/PathPlanners/IReactivePathPlanner.cs
2020-12-16 04:02:37 -07:00

12 lines
340 B
C#

using System.Collections.Generic;
using ConsoleApp.Maps;
using HexCore;
namespace ConsoleApp.PathPlanners
{
public interface IReactivePathPlanner
{
Queue<Coordinate2D> ReactiveHexPath { get; }
void GenerateReactiveHexPath(IHexMap hexMap, Queue<Coordinate2D> optimalPath, Coordinate2D vehicleCurrentHexCell);
}
}