Files
robot_intelligence_final_pr…/ConsoleApp/PathPlanners/IReactivePathPlanner.cs

10 lines
194 B
C#

using System.Collections.Generic;
using HexCore;
namespace ConsoleApp.PathPlanners
{
public interface IReactivePathPlanner
{
Queue<Coordinate2D> ReactiveHexPath { get; }
}
}