summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/mac/appdelegate.mm
blob: 8aa80e4fdb8834e14d118cb791fb2b56dc9ba09f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// license:BSD-3-Clause
// copyright-holders:R. Belmont
//============================================================
//
//  appdelegate.mm - Cocoa app delegate
//
//  Mac OSD by R. Belmont
//
//============================================================

#import "appdelegate.h"

@interface MAMEAppDelegate ()
@end

@implementation MAMEAppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
}

- (void)applicationWillTerminate:(NSNotification *)notification
{
}

- (void)applicationDidBecomeActive:(NSNotification *)notification
{
}

- (void)applicationDidResignActive:(NSNotification *)notification
{
}

- (NSApplicationTerminateReply)applicationShouldTerminate:(NSNotification *)notification
{
	return NSTerminateNow;
}
@end