public class ImageIcon
{
	public int id;

	public Image img;

	public ImageIcon(int id, Image img)
	{
		this.id = id;
		this.img = img;
	}
}
