Gruppe22.Client.Window.OnMouseDown C# (CSharp) Method

OnMouseDown() public method

public OnMouseDown ( int button ) : bool
button int
return bool
        public override bool OnMouseDown(int button)
        {
            for (int i = 0; i < _children.Count; ++i)
            {
                if (_children[i].OnMouseDown(button))
                    return true;
            }
            return true;
        }