2022-10-08 19:19:17 +04:00
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawingRollers {
|
|
|
|
void setRollersCount(int num);
|
2022-11-06 20:33:15 +04:00
|
|
|
void setColor(Color color);
|
2022-10-08 19:19:17 +04:00
|
|
|
void draw(Graphics2D g, int x, int y, int artilleryWidth, int artilleryHeight);
|
2022-11-20 22:03:58 +04:00
|
|
|
int getRollersCount();
|
2022-10-08 19:19:17 +04:00
|
|
|
}
|