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

10 lines
204 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-12-02 11:17:40 +04:00
int getCount();
Color getColor();
2022-11-10 16:44:45 +04:00
void draw(Graphics2D g, int x, int y);
}