mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-03 06:27:55 +00:00
9899a6d33e
- 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
16 lines
399 B
C#
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");
|
|
}
|
|
}
|
|
}
|