openshock-android/macos/Runner/AppDelegate.swift
Mercurio 7dba350a7d Initial build
bad code n such
2023-11-09 19:23:46 +01:00

10 lines
214 B
Swift

import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}