Initial Commit

This commit is contained in:
Creeper Lv
2025-12-14 00:25:51 +11:00
commit 40c8998552
61 changed files with 1936 additions and 0 deletions

14
Progrart.iOS/Main.cs Normal file
View File

@@ -0,0 +1,14 @@
using UIKit;
namespace Progrart.iOS;
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, typeof(AppDelegate));
}
}