import java.awt.*;
public interface IDrawingEngines {
void setCount(int count);
void setColor(Color color);
void draw(Graphics2D g, int x, int y);
}