Vocaluxe.Lib.Song.CLine.IncLastNoteLength C# (CSharp) 메소드

IncLastNoteLength() 공개 메소드

public IncLastNoteLength ( ) : bool
리턴 bool
        public bool IncLastNoteLength()
        {
            if (_Notes.Count > 0)
            {
                _Notes[_Notes.Count - 1].Duration++;
                updateMinMaxBeat();
            }
            return false;
        }