PIbd-12_Karamushko_M.K._Air.../IDrawingEngines.java

8 lines
162 B
Java
Raw Normal View History

2022-11-10 16:44:45 +04:00
import java.awt.*;
public interface IDrawingEngines {
void setCount(int count);
2022-11-29 17:50:40 +04:00
void setColor(Color color);
2022-11-10 16:44:45 +04:00
void draw(Graphics2D g, int x, int y);
}