MouseTouchManager.RemoveHandler C# (CSharp) Method

RemoveHandler() public method

public RemoveHandler ( TouchHandler, touchHandler ) : void
touchHandler TouchHandler,
return void
    public void RemoveHandler(TouchHandler touchHandler)
    {
        if (touchHandler != null && m_Handlers.Contains(touchHandler))
        {
            m_Handlers.Remove(touchHandler);
        }
    }