blob: 50d15f993c63f56f80dc855c2a5620aa2f98441d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Controller.h
// ioquake3fe
//
// Created by Ben Wilber on 3/11/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface Controller : NSObject {
IBOutlet id argsTextField;
NSTask *quakeTask;
NSFileHandle *quakeOut;
NSMutableData *quakeData;
}
- (IBAction)launch:(id)sender;
- (void)readPipe:(NSNotification *)note;
- (void)taskNote:(NSNotification *)note;
@end
|