mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 23:17:56 +00:00
14 lines
227 B
C#
14 lines
227 B
C#
using UIKit;
|
|
using System;
|
|
|
|
namespace qController.iOS
|
|
{
|
|
public class Application
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
UIApplication.Main(args, null, typeof(AppDelegate));
|
|
}
|
|
}
|
|
}
|