Stage.updateTouches C# (CSharp) Method

updateTouches() public method

public updateTouches ( Touch touchs ) : void
touchs Touch
return void
    public void updateTouches(Touch[] touchs)
    {
        if(_touchAry!=null && _touchAry.Count>0){
            _touchAry.Clear();
        }
        if(touchs.Length>0){
            _touchAry	= ArrayList.Adapter(touchs);
        }
    }