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