6 lines
75 B
Java
6 lines
75 B
Java
import java.awt.*;
|
|
|
|
public interface Form {
|
|
void Draw(Graphics2D g);
|
|
}
|