package launcher.elements;

import javax.swing.*;

public class JButtonCopy {
	final private JButton copy;
	public JButtonCopy (JButton a) {
		this.copy = a;
	}
	public JButton getCopy() {
		return copy;
	}
}
