summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/HalfPath.java
blob: 66e712b666195db323b5f4c34f4c1324d5cb8540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.noreply.fancydress.type3;

public class HalfPath {
	private Hop[] hops;
	public HalfPath(Hop[] hops) { /* FIXME */
		this.hops = hops;
	}
	public Hop[] getHops() {
		return hops;
	}
}