aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Component.swift
blob: 5ef27162b5d8419448ba1a132a1e6c554c62a049 (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
    }
}