Files
RubyMotion/installer/RubyMotion Installer/RubyMotion Installer/RMAppDelegate.m
Laurent Sansonetti 94cfc5e5a0 add installer code
2012-04-02 18:54:06 +02:00

27 lines
430 B
Objective-C

//
// RMAppDelegate.m
// RubyMotion Installer
//
// Created by lrz on 3/31/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "RMAppDelegate.h"
#import "RMMainWindowController.h"
@implementation RMAppDelegate
@synthesize window = _window;
- (void)dealloc
{
[super dealloc];
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[RMMainWindowController open];
}
@end