Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            ControllerInput      CI  = new ControllerInput(UserIndex.One);
            ControllerDataSender CDS = new ControllerDataSender(CI);

            while (true)
            {
                CI.Update();
                CDS.Update();
                CDS.Send();
                Thread.Sleep(100);
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            ControllerInput CI  = new ControllerInput(UserIndex.One);
            ControllerDataSender CDS = new ControllerDataSender(CI);
            while (true)
            {

                CI.Update();
                CDS.Update();
                CDS.Send();
                Thread.Sleep(100);
            }
        }