public class ImageRock
{
	public int id;

	public Image img;

	public int type;

	public FrameImage frImg;

	public ImageRock(int id, Image img)
	{
		this.id = id;
		this.img = img;
		frImg = new FrameImage(img, 7, 7);
	}
}
