mirror of
https://github.com/jenshemprich/MacGLide.git
synced 2025-03-13 05:29:21 +00:00
12 lines
340 B
Objective-C
12 lines
340 B
Objective-C
/* MacGLideMainPanel */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MacGLideSettingsController.h"
|
|
|
|
@interface MacGLideMainPanel : NSWindow
|
|
{
|
|
IBOutlet MacGLideSettingsController* controller;
|
|
}
|
|
// - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation;
|
|
@end
|