aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/Component.swift
blob: 027ac597306463b39fc66442a31ea8e4036f7775 (plain)
1
2
3
4
5
6
/// A component in the map.
public struct Component: Sendable, Equatable {
  public let label: String
  public let coordinates: MapPoint
  public let shape: Shape
}