10 lines
132 B
C#
10 lines
132 B
C#
|
|
namespace PathFinding
|
|
{
|
|
public interface IPlanarElement
|
|
{
|
|
MoveSet MoveSet { get; }
|
|
bool IsUpsideDown { get; }
|
|
}
|
|
}
|