ioq3/misc/osxfe/ioquake3fe/Controller.h

23 lines
424 B
C
Raw Normal View History

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