예제 #1
0
파일: Class1.cs 프로젝트: IDWMaster/3DAPI
 public DMouse(SlimDX.DirectInput.Mouse mouse)
 {
     umouse = mouse;
     mouse.Acquire();
     System.Threading.Thread mthread = new System.Threading.Thread(thetar);
     mthread.Start();
 }
예제 #2
0
파일: Class1.cs 프로젝트: IDWMaster/3DAPI
 public DKeyboard(SlimDX.DirectInput.Keyboard underlyingKeyboard)
 {
     underlyingKeyboard.Acquire();
     mboard = underlyingKeyboard;
     System.Threading.Thread mthread = new System.Threading.Thread(thetar);
     mthread.Start();
 }