diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-14 16:52:57 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-14 17:05:21 +0100 |
| commit | d56e777025f3bda29feaec22c125b0e7ab975e0c (patch) | |
| tree | 19295b051c9e32c17e32a4954fc0cdca3d4e0be5 /Sources/WmapParser/DataStructures/Component.swift | |
| parent | 0b90075f76b6f2df77c01c303322323b1395641a (diff) | |
Format, make map equatable
Diffstat (limited to 'Sources/WmapParser/DataStructures/Component.swift')
| -rw-r--r-- | Sources/WmapParser/DataStructures/Component.swift | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Sources/WmapParser/DataStructures/Component.swift b/Sources/WmapParser/DataStructures/Component.swift index 5ef2716..48dac78 100644 --- a/Sources/WmapParser/DataStructures/Component.swift +++ b/Sources/WmapParser/DataStructures/Component.swift @@ -1,8 +1,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 - } + /// A component in the map. + public struct Component: Sendable, Equatable { + public let label: String + public let coordinates: MapPoint + public let shape: Shape + } } |