Stage.updateTouches C# (CSharp) 메소드

updateTouches() 공개 메소드

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