blob: 9621fd44d5db0f788c05d22b3c2400059411ceba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// AppDelegate.h
// Low Battery Yup
//
// Created by TW on 11/16/16.
// Copyright (c) 2016 TW. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <MASShortcut/MASShortcutView.h>
#import <MASShortcut/MASShortcutView+Bindings.h>
#import <MASShortcut/MASShortcutBinder.h>
@interface AppDelegate : NSObject <NSApplicationDelegate> {
IBOutlet NSWindow *window;
IBOutlet MASShortcutView *_shortcut_view;
}
- (IBAction)logDefaults:(id)sender;
@end
|