aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/Note.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/WmapParser/Note.swift')
-rw-r--r--Sources/WmapParser/Note.swift5
1 files changed, 5 insertions, 0 deletions
diff --git a/Sources/WmapParser/Note.swift b/Sources/WmapParser/Note.swift
new file mode 100644
index 0000000..0db3739
--- /dev/null
+++ b/Sources/WmapParser/Note.swift
@@ -0,0 +1,5 @@
+/// A note.
+public struct Note: Sendable, Equatable {
+ public let text: String
+ public let coordinates: MapPoint
+}