interface RegionMovementSegment {
    type: number;
    from: RegionMovementWaypoint;
    to: RegionMovementWaypoint;
}

Properties

Properties

type: number

The type of this segment (see Region.MOVEMENT_SEGMENT_TYPES).

The waypoint that this segment starts from

The waypoint that this segment goes to.