mirror of
https://github.com/textmate/textmate.git
synced 2026-02-15 00:45:02 -05:00
12 lines
228 B
Objective-C
12 lines
228 B
Objective-C
@class MASPreferencesWindowController;
|
|
|
|
@interface Preferences : NSResponder
|
|
{
|
|
MASPreferencesWindowController* windowController;
|
|
NSArray* viewControllers;
|
|
}
|
|
+ (Preferences*)sharedInstance;
|
|
|
|
- (void)showWindow:(id)sender;
|
|
@end
|