PIbd-23_Polevoy_S.V._SelfPr.../IDrawingRollers.java

9 lines
235 B
Java
Raw Normal View History

2022-10-08 19:19:17 +04:00
import java.awt.*;
public interface IDrawingRollers {
void setRollersCount(int num);
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
}