9 lines
235 B
Java
9 lines
235 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);
|
|
int getRollersCount();
|
|
}
|