diff options
| -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 } } |