Initial Commit

This commit is contained in:
2019-03-04 21:05:49 +01:00
parent ce3fe28a5a
commit fa79ea9f05
94 changed files with 9140 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace PlantBox.Client.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");
}
}
}