public class Action {
	
	
	//=======================================
	public static Action 
	//=======================================

	public int cost;
	public int type;

	public Action(int cost, int type) {
		this.cost = cost;
		this.type = type;
	}

}
