aboutsummaryrefslogtreecommitdiff
path: root/VKPC/FlippedView.m
blob: bdf597274838f3bc0f13da35eb88c1115463be13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  PopoverView.m
//  VKPC
//
//  Created by Eugene on 12/1/13.
//  Copyright (c) 2013 Eugene Z. All rights reserved.
//

#import "FlippedView.h"

@implementation FlippedView

- (id)initWithFrame:(NSRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code here.
    }
    return self;
}

- (void)drawRect:(NSRect)dirtyRect {
	[super drawRect:dirtyRect];
	
    // Drawing code here.
}

- (BOOL)isFlipped {
    return YES;
}

@end