0
0
Fork 0
mirror of https://github.com/UberGames/ioef.git synced 2025-03-10 02:41:46 +00:00
ioef/misc/osxfe/ioquake3fe/ErrorWindowController.m

20 lines
366 B
Objective-C

//
// ErrorWindowController.m
// ioquake3fe
//
// Created by Ben Wilber on 3/11/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "ErrorWindowController.h"
@implementation ErrorWindowController
// yes, a whole class just so the fucking app will quit
- (BOOL)windowShouldClose:(id)sender {
[NSApp terminate:self];
return YES;
}
@end