public class Action {
	
	
	//=======================================
	public static Action capturer = new Action(Interface.COUT_CAPTURE, 0);
	//=======================================

	public int cost;
	public int type;

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

}
