first copy of the front-end from Ben Wilber. Thanks Ben!

This commit is contained in:
Zachary Slater 2009-03-21 22:55:40 +00:00
parent 53adde9fb2
commit d8080d3646
18 changed files with 5821 additions and 0 deletions

View file

@ -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