mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-11 00:28:29 +00:00
16 lines
471 B
Swift
16 lines
471 B
Swift
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// SPDX-FileCopyrightText: Copyright 2024 Pomelo, Stossy11
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import SwiftUI
|
|
import AppUI
|
|
|
|
struct ContentView: View {
|
|
@State var core = Core(games: [], root: FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0])
|
|
var body: some View {
|
|
HomeView(core: core).onAppear() {
|
|
}
|
|
}
|
|
}
|