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