use of com.xenoage.zong.commands.core.music.slur.SlurAdd in project Zong by Xenoage.
the class Base24f method getExpectedChords.
static Chord[] getExpectedChords() {
Chord[] ret = { ch(Companion.fr(2, 4), Companion.pi('E', 0, 5)), gr(Companion.fr(1, 16), false, Companion.pi('G', 0, 5)), ch(Companion.fr(2, 4), Companion.pi('E', 0, 5)) };
new SlurAdd(slur(ret[1], ret[2])).execute();
return ret;
}