diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-13 01:17:52 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-14 09:15:07 +0100 |
| commit | 03f1a7389afeadf9aa2b1d62a38e5cb0a2a7e60d (patch) | |
| tree | 2efefc34a61c62d55d8436180acfc3590287f5fd /Sources/WmapParser/Note.swift | |
Initial implementation
Diffstat (limited to 'Sources/WmapParser/Note.swift')
| -rw-r--r-- | Sources/WmapParser/Note.swift | 5 |
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 +} |