From 03f1a7389afeadf9aa2b1d62a38e5cb0a2a7e60d Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 13 Dec 2025 01:17:52 +0100 Subject: Initial implementation --- Sources/WmapParser/MapPoint.swift | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Sources/WmapParser/MapPoint.swift (limited to 'Sources/WmapParser/MapPoint.swift') diff --git a/Sources/WmapParser/MapPoint.swift b/Sources/WmapParser/MapPoint.swift new file mode 100644 index 0000000..718ecab --- /dev/null +++ b/Sources/WmapParser/MapPoint.swift @@ -0,0 +1,5 @@ +/// A point in the map +public struct MapPoint: Sendable, Equatable { + let xCoordinate: Double + let yCoordinate: Double +} -- cgit