mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
//
|
|
// main.cpp
|
|
// RobloxMobile
|
|
//
|
|
// Created by Kyler Mulherin on 10/28/15.
|
|
// Copyright © 2015 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int retVal = UIApplicationMain(argc, argv, @"UIApplication", @"AppDelegate");
|
|
return retVal;
|
|
}
|