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