9 lines
183 B
Java
9 lines
183 B
Java
|
package Drawnings;
|
||
|
|
||
|
import java.awt.*;
|
||
|
|
||
|
public interface IDrawWheels {
|
||
|
void setNumber(int x);
|
||
|
void drawWheels(Graphics2D graphics2D, Color color, int _startX, int _startY);
|
||
|
}
|