sharee.bike-App/TINK/TINK.iOS/Main.cs

16 lines
332 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using UIKit;
2021-05-13 20:16:41 +02:00
namespace TINK.iOS
{
2022-09-06 16:08:19 +02:00
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");
}
}
2021-05-13 20:16:41 +02:00
}