summaryrefslogtreecommitdiff
path: root/songsterr-reader/src/main/java/de/uvok/tuxguitar/Measure.java
blob: a6dc3eedfd347e5c0ba4fd81aa79a76cc844970e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.uvok.tuxguitar;

import java.util.Optional;

public class Measure {
    public int index;
    public Voice[] voices;
    
    public Boolean rest;
    public Boolean repeatStart;

    // *maybe* the default is 1?
    public Optional<java.lang.Integer> repeat;

    public int[] signature;
    public int[] alternateEnding;
}