6 lines
161 B
Java
Raw Permalink Normal View History

2022-11-22 10:13:07 +04:00
import java.awt.*;
public interface IDrawingDecks {
void setDecksCount(int num);
void draw(Graphics2D g, int x, int y, int shipWidth, int shipHeight);
}