rustdesk/flutter/macos/Runner/AppDelegate.swift
SoLongAndThanksForAllThePizza d756551791 fix: macos compilation
2022-06-02 16:13:34 +08:00

11 lines
255 B
Swift

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