apple2ix/Apple2Mac/Apple2Mac/Classes/OSX/EmulatorWindow.m
Aaron Culliney a632166767 Adds EmulatorWindow to pass keycodes when not fullscreen
* Also bumps XIB to Xcode 6
2014-10-14 19:06:04 -07:00

24 lines
373 B
Objective-C

//
// EmulatorWindow.m
// Apple2Mac
//
// Created by Aaron Culliney on 10/13/14.
// Copyright (c) 2014 deadc0de.org. All rights reserved.
//
#import "EmulatorWindow.h"
@implementation EmulatorWindow
- (void)keyUp:(NSEvent *)event
{
[[self windowController] keyUp:event];
}
- (void)keyDown:(NSEvent *)event
{
[[self windowController] keyDown:event];
}
@end