diff options
Diffstat (limited to 'Sources/WmapParser/DataStructures/Note.swift')
| -rw-r--r-- | Sources/WmapParser/DataStructures/Note.swift | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Sources/WmapParser/DataStructures/Note.swift b/Sources/WmapParser/DataStructures/Note.swift new file mode 100644 index 0000000..de87979 --- /dev/null +++ b/Sources/WmapParser/DataStructures/Note.swift @@ -0,0 +1,7 @@ +extension WmapParser { +/// A note. +public struct Note: Sendable, Equatable { + public let text: String + public let coordinates: MapPoint +} +} |