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(); }