Exemplo n.º 1
0
 public void InitializeInput()
 {
     input = new InputDevices(renderWindow);
     processDevices = new Thread(input.Processing);
     processDevices.Start();
 }
Exemplo n.º 2
0
 public void DeInitializeInput()
 {
     input = null;
     processDevices.Abort();
 }