16 lines
401 B
C#
Raw Normal View History

2024-02-14 23:32:20 +01:00
using UIKit;
2024-02-20 23:02:47 +01:00
namespace Borepin.iOS
2024-02-14 23:32:20 +01:00
{
2024-02-20 23:02:47 +01:00
public class Application
2024-02-14 23:32:20 +01:00
{
2024-02-20 23:02:47 +01:00
// 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));
}
2024-02-14 23:32:20 +01:00
}
}