package candyfactory;

import java.awt.Graphics;

public abstract class CandyObject {
	int x, y;
	int w,h;
	int capacity;
	
	public CandyObject(int x, int y, int w, int h, int capacity) {
		this.x=x;
		this.y=y;
		this.w=w;
		this.h=h;
		this.capacity=capacity;
	}
	
	void drawSelf(Graphics g){
		
	}
}
