Blame view

VRGNYMusicLights/Sources/Music.java 370 Bytes
742429d1   pfrison   VRGNYMusicLight b...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  
  public class Music {
  	private MusicPattern pattern;
  	private MusicPath path;
  	private long startDelai; // in ms
  	private long length; // in ms
  
  	public Music(MusicPattern pattern, MusicPath path, long startDelai, long length) {
  		this.pattern = pattern;
  		this.path = path;
  		this.startDelai = startDelai;
  		this.length = length;
  		
  		//call MusicPath transform()
  	}
  }