1// license:BSD-3-Clause
2// copyright-holders:R. Belmont
3//============================================================
4//
5//  appdelegate.mm - Cocoa app delegate
6//
7//  Mac OSD by R. Belmont
8//
9//============================================================
10
11#import "appdelegate.h"
12
13@interface MAMEAppDelegate ()
14@end
15
16@implementation MAMEAppDelegate
17
18- (void)applicationDidFinishLaunching:(NSNotification *)notification
19{
20}
21
22- (void)applicationWillTerminate:(NSNotification *)notification
23{
24}
25
26- (void)applicationDidBecomeActive:(NSNotification *)notification
27{
28}
29
30- (void)applicationDidResignActive:(NSNotification *)notification
31{
32}
33
34- (NSApplicationTerminateReply)applicationShouldTerminate:(NSNotification *)notification
35{
36	return NSTerminateNow;
37}
38@end
39