Files
qController/iOS/Main.cs
T
jwetzell 9899a6d33e BIG TCP Overhaul and passcode start
- Switch to Serilog for console logging
- TCPSender is now persistent (let's hope) so can be used with passcode protected workspaces
- UDP connection works with passcodes just can't timeout
- Passcode prompt is automatic for workspaces that are password protected
2020-06-05 23:53:16 -05:00

16 lines
399 B
C#

using UIKit;
namespace qController.iOS
{
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");
}
}
}