mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
19 lines
359 B
Objective-C
19 lines
359 B
Objective-C
//
|
|
// main.m
|
|
// minecraftpe
|
|
//
|
|
// Created by Brent on 10/12/23.
|
|
// Copyright (c) 2023 ReMinecraftPE. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "minecraftpeAppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([minecraftpeAppDelegate class]));
|
|
}
|
|
}
|