Files
Shogi/PathFinding/IPlanarElement.cs

13 lines
173 B
C#

using System.Collections.Generic;
namespace PathFinding
{
public interface IPlanarElement
{
ICollection<Path> GetPaths();
bool IsUpsideDown { get; }
}
}