BBGamelib.CCTouchDispatcher.removeDelegate C# (CSharp) Method

removeDelegate() public method

public removeDelegate ( System aDelegate ) : void
aDelegate System
return void
		public void removeDelegate(System.Object aDelegate)
		{
			if( aDelegate == null )
				return;
			
			if( ! locked ) {
				forceRemoveDelegate(aDelegate);
			} else {
				if( ! removeDelegate(aDelegate, handlersToAdd) ) {
					handlersToRemove.Add(aDelegate);
					toRemove = true;
				}
			}
		}
		#endregion

Same methods

CCTouchDispatcher::removeDelegate ( System del, ArrayList fromQueue ) : bool