public Block(int bits, int width) { notes = new RawNote[bits][]; for (int i = 0; i < notes.Length; ++i) { notes[i] = new RawNote[width]; for (int j = 0; j < width; ++j) { notes[i][j] = RawNote.NONOTENOTE; } } }
public TapNote(int line) { raw = new RawNote(RawNote.TABNOTE, line, line, RawNote.NOFLICK, 0); }
public void SetNote(int roffset, int line, RawNote note) { notes[roffset][line - 1] = note; }