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/MapPoint.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Sources/WmapParser/DataStructures/MapPoint.swift') diff --git a/Sources/WmapParser/DataStructures/MapPoint.swift b/Sources/WmapParser/DataStructures/MapPoint.swift index c0eb971..7fedc00 100644 --- a/Sources/WmapParser/DataStructures/MapPoint.swift +++ b/Sources/WmapParser/DataStructures/MapPoint.swift @@ -1,7 +1,7 @@ extension WmapParser { - /// A point in the map - public struct MapPoint: Sendable, Equatable { - let xCoordinate: Double - let yCoordinate: Double - } + /// A point in the map + public struct MapPoint: Sendable, Equatable { + let xCoordinate: Double + let yCoordinate: Double + } } -- cgit