10 lines
No EOL
207 B
C#
10 lines
No EOL
207 B
C#
namespace Plugin.CoreImpl.Pathfinding
|
|
{
|
|
public struct PathFinderNode
|
|
{
|
|
public short X;
|
|
public short Y;
|
|
public short ParentX; // Parent
|
|
public short ParentY;
|
|
}
|
|
} |