9 lines
204 B
Java
Raw Normal View History

import java.awt.*;
public interface IWheelDraw {
void DrawWheels(int _startPosX, int _startPosY, Color bodyColor, Graphics2D g2d);
void setWheelCount(int wheelCount);
2023-11-28 18:10:22 +04:00
int getWheelCount();
}