8 lines
189 B
Java
8 lines
189 B
Java
import java.awt.*;
|
|
|
|
public interface IDrawningObjectWheels {
|
|
void SetCountWheels(int count);
|
|
void DrawWheels(Graphics2D g, int _startPosX, int _startPosY);
|
|
String GetCount();
|
|
}
|