package candyfactory;

import java.awt.Graphics;

public class CandyShop extends CandyObject {

	public CandyShop(int x, int y, int w, int h, int capacity) {
		super(x, y, w, h, capacity);
		// TODO Auto-generated constructor stub
	}

	@Override
	void drawSelf(Graphics g) {
		// TODO Auto-generated method stub
		
	}

}
