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

16 lines
392 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using UIKit;
2021-11-07 19:42:59 +01:00
namespace TINK.iOS
{
2022-08-30 15:42:25 +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-11-07 19:42:59 +01:00
}