mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
17 lines
282 B
Plaintext
17 lines
282 B
Plaintext
//
|
|
// main.m
|
|
// RobloxMobile
|
|
//
|
|
// Copyright (c) 2012 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int retVal = UIApplicationMain(argc, argv, @"UIApplication", @"AppDelegateROMA");
|
|
return retVal;
|
|
}
|