This commit is contained in:
2020-05-03 23:46:08 +08:00
commit 67d4955664
34 changed files with 1295 additions and 0 deletions

15
Pixiview.iOS/Main.cs Normal file
View File

@@ -0,0 +1,15 @@
using UIKit;
namespace Pixiview.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, "AppDelegate");
}
}
}