diff options
Diffstat (limited to 'misc/osxfe/ioquake3fe/Controller.h')
-rw-r--r-- | misc/osxfe/ioquake3fe/Controller.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/misc/osxfe/ioquake3fe/Controller.h b/misc/osxfe/ioquake3fe/Controller.h new file mode 100644 index 0000000..50d15f9 --- /dev/null +++ b/misc/osxfe/ioquake3fe/Controller.h @@ -0,0 +1,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 |