7 lines
176 B
Java
7 lines
176 B
Java
|
import java.awt.*;
|
||
|
|
||
|
public interface IDrawingRollers {
|
||
|
void setRollersCount(int num);
|
||
|
void draw(Graphics2D g, int x, int y, int artilleryWidth, int artilleryHeight);
|
||
|
}
|