aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/MapPoint.swift
blob: 7fedc005897272ff8697bfb77779e6cc435e8ce1 (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
  }
}