Pibd-14_Boyko_M.S._ElectroT.../ProjectElectroTrans/Drawnings/IDrawWheels.java

9 lines
183 B
Java
Raw Normal View History

2024-04-25 10:39:26 +04:00
package Drawnings;
import java.awt.*;
public interface IDrawWheels {
void setNumber(int x);
void drawWheels(Graphics2D graphics2D, Color color, int _startX, int _startY);
}