package gve.calc;

import java.awt.*;

public interface Layer {
	public void paintLayer(Graphics g,int width,int height);
}