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