Timr/Timr.m
2009-12-16 01:34:46 +01:00

26 lines
390 B
Objective-C

//
// Timr.m
// Timr
//
// Created by Jeena on 15.12.09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "Timr.h"
@implementation Timr
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
}
return self;
}
- (void)drawRect:(NSRect)dirtyRect {
// Drawing code here.
}
@end