Beispiel #1
0
 static public void RightMouseButtonUp()
 {
     if (Input.GetKeyState(Keys.RButton) == true)
     {
         Input.RightUp();
     }
 }
Beispiel #2
0
 static public void LeftMouseButtonUp()
 {
     if (Input.GetKeyState(Keys.LButton) == true)
     {
         Input.LeftUp();
     }
 }
Beispiel #3
0
 static public void RightMouseButtonDown()
 {
     if (Input.GetKeyState(Keys.RButton) == false)
     {
         Input.RightDown();
     }
 }
Beispiel #4
0
 static public void LeftMouseButtonDown()
 {
     if (Input.GetKeyState(Keys.LButton) == false)
     {
         Input.LeftDown();
     }
 }