public class Action {

	public int cost;

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

}
