AlphaTab.Rendering.Glyphs.TieGlyph.TieGlyph C# (CSharp) 메소드

TieGlyph() 공개 메소드

public TieGlyph ( Note startNote, Note endNote, Glyph parent, bool forEnd ) : System
startNote AlphaTab.Model.Note
endNote AlphaTab.Model.Note
parent Glyph
forEnd bool
리턴 System
        public TieGlyph(Note startNote, Note endNote, Glyph parent, bool forEnd)
            : base(0, 0)
        {
            StartNote = startNote;
            EndNote = endNote;
            Parent = parent;
            _forEnd = forEnd;
        }