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

22 lines
390 B
Objective-C

//
// TimrAppDelegate.m
// Timr
//
// Created by Jeena on 15.12.09.
// Copyright 2009 Jeena Paradies. All rights reserved.
//
#import "TimrAppDelegate.h"
@implementation TimrAppDelegate
@synthesize window, timer;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
[timer applicationLoaded:self];
}
@end