Example #1
0
 public Control()
 {
     x360Bus = new X360Device();
     for (int i = 0; i < DS4Controllers.Length; i++)
     {
         processingData[i] = new X360Data();
         MappedState[i]    = new DS4State();
         CurrentState[i]   = new DS4State();
         PreviousState[i]  = new DS4State();
         ExposedState[i]   = new DS4StateExposed(CurrentState[i]);
     }
 }