2022-11-07 01:52:50 +04:00
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawningRollers {
|
|
|
|
void setRollersCount(int count);
|
2022-12-04 00:19:21 +04:00
|
|
|
void setColor(Color color);
|
2022-11-07 01:52:50 +04:00
|
|
|
void DrawRollers(Graphics2D g, float _startPosX, float _startPosY);
|
|
|
|
}
|