aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/MapPoint.swift
blob: c0eb9718613787c9b3114140eec922d6eec036f5 (plain)
1
2
3
4
5
6
7
extension WmapParser {
    /// A point in the map
    public struct MapPoint: Sendable, Equatable {
      let xCoordinate: Double
      let yCoordinate: Double
    }
}