mirror of
https://github.com/ksherlock/ample.git
synced 2025-02-18 17:30:37 +00:00
- bookmark edit window - rom window now shows machine description, tooltip is name - fix split floppy logic to work with a2superdrive - fix software list loading from default - mame 241 machine updates
17 lines
317 B
Objective-C
17 lines
317 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 8/16/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
- (IBAction)displayPreferences:(id)sender;
|
|
- (IBAction)manageBookmarks: (id)sender;
|
|
@end
|
|
|