package candyfactory;

import java.awt.Graphics;

public class CandyFactory extends CandyObject {

	public CandyFactory(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) {
		g.drawRect(x, y,w,h);
		
	}

}
