SameBoy/Cocoa/GBBorderView.m

12 lines
196 B
Mathematica
Raw Normal View History

2016-07-03 17:58:25 +00:00
#import "GBBorderView.h"
@implementation GBBorderView
- (void)drawRect:(NSRect)dirtyRect {
[[NSColor blackColor] setFill];
NSRectFill(dirtyRect);
[super drawRect:dirtyRect];
}
@end