mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 15:21:35 +00:00
11 lines
166 B
C
11 lines
166 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface ErrorWindow : NSObject {
|
||
|
IBOutlet id errorWindow;
|
||
|
IBOutlet id errorTextField;
|
||
|
}
|
||
|
|
||
|
- (void)bitch:(NSString *)errorlog;
|
||
|
|
||
|
@end
|