package structures;

public class struct_grow {
	
	public int x;
	public int y;
	public int label;
	
	public struct_grow (int x, int y, int label) {
		this.x = x;
		this.y = y;
		this.label = label;
	}
}
