From 34fef2f5eca64586aace2c83723135c1eca346f7 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Thu, 16 May 2024 17:40:27 -0700 Subject: Move tracker items and bookmarks to SwiftData for iCloud sync. --- Hotline/Sounds/Application-iOS.swift | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Hotline/Sounds/Application-iOS.swift') 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 -- cgit