package candyfactory;

import java.awt.Graphics;

public class CandyStorage extends CandyObject {

    public CandyStorage(int x, int y, int w, int h, int capacity, int quantity) {
	super(x, y, w, h, capacity, quantity);
    }

    @Override
    void drawSelf(Graphics g) {
	super.drawSelf(g);
	g.drawRect(x, y, w, h);
    }

}
