Path: blob/a-new-beginning/Folium-macOS/Folium_macOSApp.swift
2 views
//
// Folium_macOSApp.swift
// Folium-macOS
//
// Created by Jarrod Norwell on 11/12/2025.
//
import SwiftUI
@main
struct Folium_macOSApp: App {
var body: some Scene {
WindowGroup(id: "snes-window", for: File.self) { $file in
SNESView(file: $file)
.frame(width: 512, height: 480)
} defaultValue: {
File(url: URL.downloadsDirectory)
}
WindowGroup {
ContentView()
}
}
}