namespace Plugin.CoreImpl.Pathfinding { public struct PathFinderNode { public short X; public short Y; public short ParentX; // Parent public short ParentY; } }