mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 15:21:34 +00:00
21 lines
366 B
Mathematica
21 lines
366 B
Mathematica
|
//
|
||
|
// 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
|