8 lines
208 B
Java
8 lines
208 B
Java
import java.awt.*;
|
|
|
|
public interface IDrawingRollers {
|
|
void setRollersCount(int num);
|
|
void setColor(Color color);
|
|
void draw(Graphics2D g, int x, int y, int artilleryWidth, int artilleryHeight);
|
|
}
|