mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
23 lines
424 B
C
23 lines
424 B
C
|
//
|
||
|
// 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
|