2022-10-22 16:07:28 +04:00
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawningObjectWheels {
|
|
|
|
void SetCountWheels(int count);
|
|
|
|
void DrawWheels(Graphics2D g, int _startPosX, int _startPosY);
|
2022-12-13 20:39:04 +04:00
|
|
|
String GetCount();
|
2022-10-22 16:07:28 +04:00
|
|
|
}
|