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