8 lines
179 B
Java
8 lines
179 B
Java
|
import java.awt.*;
|
||
|
|
||
|
public interface IWheelDraw {
|
||
|
void DrawWheels(int _startPosX, int _startPosY, Color bodyColor, Graphics2D g2d);
|
||
|
void setWheelCount(int wheelCount);
|
||
|
|
||
|
}
|