Exemplo n.º 1
0
 public KeyPress(DirectInputKeys key)
     : base("output_keypress", "KeyPress")
 {
     Operations = new OutputBase[] {
         new KeyDown(key),
         new Sleep(Core.Instance.Configuration.KeyReleaseDelay),
         new KeyUp(key)
     };
 }
Exemplo n.º 2
0
 public KeyUp(DirectInputKeys key)
     : base("output_keyup", "KeyUp")
 {
     Key = key;
 }
Exemplo n.º 3
0
 public KeyDown(DirectInputKeys key)
     : base("output_keydown", "KeyDown")
 {
     Key = key;
 }
Exemplo n.º 4
0
		public KeyPress(DirectInputKeys key)
			: base("output_keypress", "KeyPress")
		{
			Operations = new OutputBase[] {
				new KeyDown(key),
				new Sleep(Core.Instance.Configuration.KeyReleaseDelay),
				new KeyUp(key)
			};
		}
Exemplo n.º 5
0
		public KeyUp(DirectInputKeys key)
			: base("output_keyup", "KeyUp")
		{
			Key = key;
		}
Exemplo n.º 6
0
		public KeyDown(DirectInputKeys key)
			: base("output_keydown", "KeyDown")
		{
			Key = key;
		}
Exemplo n.º 7
0
 public KeyPress(DirectInputKeys key)
     : base("output_keypress", "KeyPress")
 {
     Key = key;
 }