mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-24 05:11:42 +00:00
12 lines
224 B
Objective-C
12 lines
224 B
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
@interface PopScrollView: NSScrollView
|
|
{
|
|
NSButton *button1;
|
|
NSButton *button2;
|
|
}
|
|
|
|
- (id) initWithFrame: (NSRect) frameRect button1: (NSButton *) b1 button2: (NSButton *) b2;
|
|
- (void) tile;
|
|
|
|
@end
|