From d56e777025f3bda29feaec22c125b0e7ab975e0c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:52:57 +0100 Subject: Format, make map equatable --- Sources/WmapParser/DataStructures/Component.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Sources/WmapParser/DataStructures/Component.swift') 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 + } } -- cgit