From 0b90075f76b6f2df77c01c303322323b1395641a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:16:22 +0100 Subject: Use WmapParser namespace --- Sources/WmapParser/DataStructures/MapPoint.swift | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Sources/WmapParser/DataStructures/MapPoint.swift (limited to 'Sources/WmapParser/DataStructures/MapPoint.swift') diff --git a/Sources/WmapParser/DataStructures/MapPoint.swift b/Sources/WmapParser/DataStructures/MapPoint.swift new file mode 100644 index 0000000..c0eb971 --- /dev/null +++ b/Sources/WmapParser/DataStructures/MapPoint.swift @@ -0,0 +1,7 @@ +extension WmapParser { + /// A point in the map + public struct MapPoint: Sendable, Equatable { + let xCoordinate: Double + let yCoordinate: Double + } +} -- cgit