Ejemplo n.º 1
0
 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;
         }
     }
 }
Ejemplo n.º 2
0
 public TapNote(int line)
 {
     raw = new RawNote(RawNote.TABNOTE, line, line, RawNote.NOFLICK, 0);
 }
Ejemplo n.º 3
0
 public void SetNote(int roffset, int line, RawNote note)
 {
     notes[roffset][line - 1] = note;
 }