mirror of
https://github.com/dolphin-emu/WiimotePair.git
synced 2026-01-31 01:15:18 +01:00
29 lines
528 B
Objective-C
29 lines
528 B
Objective-C
// Copyright 2024 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)notification {
|
|
//
|
|
}
|
|
|
|
- (void)applicationWillTerminate:(NSNotification*)notification {
|
|
//
|
|
}
|
|
|
|
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication*)app {
|
|
return true;
|
|
}
|
|
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication*)sender {
|
|
return true;
|
|
}
|
|
|
|
@end
|