9 lines
226 B
Java
9 lines
226 B
Java
import java.awt.*;
|
|
|
|
public interface IDrawningRollers {
|
|
void setRollersCount(int count);
|
|
void setColor(Color color);
|
|
void DrawRollers(Graphics2D g, float _startPosX, float _startPosY);
|
|
int getRollersCount();
|
|
}
|