10 lines
194 B
C#
10 lines
194 B
C#
using System.Collections.Generic;
|
|
using HexCore;
|
|
|
|
namespace ConsoleApp.PathPlanners
|
|
{
|
|
public interface IReactivePathPlanner
|
|
{
|
|
Queue<Coordinate2D> ReactiveHexPath { get; }
|
|
}
|
|
} |