Example #1
0
        private void StartUdpHost(StartOptions args, int bindPort)
        {
            if (args.HasArg(StartArguments.NoUdp))
            {
                return;
            }

            udpHost = new ISUdpServer(clientMan, bindPort);
        }
Example #2
0
 public GlobalInputController(ClientManager clientManager, InputManagerBase inputManager, ISUdpServer udp)
 {
     udpHost   = udp;
     inputMan  = inputManager;
     clientMan = clientManager;
 }