6 lines
75 B
Java
Raw Permalink Normal View History

2022-11-02 08:51:14 +03:00
import java.awt.*;
public interface Form {
void Draw(Graphics2D g);
}