mirror of
https://github.com/jwetzell/qController.git
synced 2026-07-26 10:38:50 +00:00
13 lines
213 B
C#
13 lines
213 B
C#
using UIKit;
|
|
|
|
namespace qController.iOS
|
|
{
|
|
public class Application
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
UIApplication.Main(args, null, typeof(AppDelegate));
|
|
}
|
|
}
|
|
}
|