// // AppDelegate.m // macOS (App) // // Created by Tomek Wójcik on 21/08/2025. // #import "AppDelegate.h" @implementation AppDelegate - (void)applicationDidFinishLaunching:(NSNotification *)notification { // Override point for customization after application launch. } - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender { return YES; } @end