aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/MapPoint.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/WmapParser/MapPoint.swift')
-rw-r--r--Sources/WmapParser/MapPoint.swift5
1 files changed, 5 insertions, 0 deletions
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
+}