diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-14 17:11:39 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-14 17:11:51 +0100 |
| commit | 969b6a6653699b9f8662feb7f42511740f96f84a (patch) | |
| tree | 19a1e665d47b88fe11b9b0bf400cbbf3ed3b7a81 /Sources/WmapParser/DataStructures/MapPoint.swift | |
| parent | d56e777025f3bda29feaec22c125b0e7ab975e0c (diff) | |
Make coordinates public
Diffstat (limited to 'Sources/WmapParser/DataStructures/MapPoint.swift')
| -rw-r--r-- | Sources/WmapParser/DataStructures/MapPoint.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sources/WmapParser/DataStructures/MapPoint.swift b/Sources/WmapParser/DataStructures/MapPoint.swift index 7fedc00..45a8f6c 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 + public let xCoordinate: Double + public let yCoordinate: Double } } |