mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-02 14:34:55 +08:00
15 lines
259 B
Objective-C
15 lines
259 B
Objective-C
//
|
|
// main.m
|
|
// RubyMotion Installer
|
|
//
|
|
// Created by lrz on 3/31/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return NSApplicationMain(argc, (const char **)argv);
|
|
}
|