diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-16 17:40:27 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-16 17:40:27 -0700 |
| commit | 34fef2f5eca64586aace2c83723135c1eca346f7 (patch) | |
| tree | c1932cd9e17a4d8574952f43eee611fda4c09485 /Hotline/Sounds/Application-iOS.swift | |
| parent | bba5122797f47f463c2949a79876e2514694ca02 (diff) | |
Move tracker items and bookmarks to SwiftData for iCloud sync.
Diffstat (limited to 'Hotline/Sounds/Application-iOS.swift')
| -rw-r--r-- | Hotline/Sounds/Application-iOS.swift | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Hotline/Sounds/Application-iOS.swift b/Hotline/Sounds/Application-iOS.swift index 055c8f1..dc3a9d0 100644 --- a/Hotline/Sounds/Application-iOS.swift +++ b/Hotline/Sounds/Application-iOS.swift @@ -2,13 +2,10 @@ import SwiftUI import SwiftData import UniformTypeIdentifiers -#if os(iOS) - @main struct Application: App { private var model = Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient()) - @State private var soundEffects = SoundEffectPlayer() @State private var bookmarks = Bookmarks() @FocusedValue(\.activeHotlineModel) private var activeHotline: Hotline? @@ -21,5 +18,3 @@ struct Application: App { } } } - -#endif |