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