blob: f0986e763e19dc9da13a349a93b61d3fa2057891 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#define PluginConfigController DFNetPlayPluginConfigController
#import <Cocoa/Cocoa.h>
@interface PluginConfigController : NSWindowController
{
IBOutlet NSTextField *ipAddress;
IBOutlet NSTextField *portNum;
IBOutlet NSTextField *playerNum;
}
- (IBAction)cancel:(id)sender;
- (IBAction)ok:(id)sender;
- (void)loadValues;
@end
|