System.Action.Invoke(WindowSelectListElement)

Here are the examples of the csharp api System.Action.Invoke(WindowSelectListElement) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : WindowSelectListElement.cs
with GNU General Public License v3.0
from CircuitLord

private void TriggerEvent() {

		//Used for re-targeting an existing window
		if (onPressedPreHook != null) {
			onPressedPreHook.Invoke(this);
			onPressedPreHook = null;
		}
		else {
			onPressed.Invoke(this);
		}
		
	}