swift reworks

This commit is contained in:
lizzie
2026-04-30 15:55:43 +00:00
parent 8b514d39fe
commit ccbcc9958c
7 changed files with 154 additions and 303 deletions
+10
View File
@@ -6,6 +6,7 @@
import UIKit
import Foundation
import QuartzCore.CAMetalLayer
import SwiftUI
public struct AppUI {
public static let shared = AppUI()
@@ -101,3 +102,12 @@ public struct AppUI {
appUIObjC.settingsChanged()
}
}
struct EdenApp: App {
@StateObject private var core = EmulationViewModel()
var body: some Scene {
WindowGroup {
ContentView(core: core)
}
}
}