aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Note.swift
blob: de879798b30d2a858436fea6bfeb8f63bd4bb600 (plain)
1
2
3
4
5
6
7
extension WmapParser {
/// A note.
public struct Note: Sendable, Equatable {
  public let text: String
  public let coordinates: MapPoint
}
}