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

	public int cost;

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

}
