Files
2025-09-18 17:55:52 -04:00

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;
}