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