Files
archived-WiimotePair/WiimotePair/AppDelegate.m
2024-02-04 18:07:10 -05:00

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