Axiom.Samples.Widget.OnCursorPressed C# (CSharp) Method

OnCursorPressed() public method

Raises the CursorPressed event.
public OnCursorPressed ( Vector2 cursorPos ) : void
cursorPos Vector2 current cursor position
return void
		public virtual void OnCursorPressed( Vector2 cursorPos )
		{
			// Make a temporary copy of the event to avoid possibility of
			// a race condition if the last subscriber unsubscribes
			// immediately after the null check and before the event is raised.
			CursorPressedHandler handler = CursorPressed;
			if ( handler != null )
				handler(this, cursorPos );
		}