You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
250 B

package 2;
/**
* 鍥惧舰鎺ュ彛锛屽畾涔夋墍鏈夊浘褰㈠拰鑾峰彇棰滆壊鐨勬柟娉?
* @author The Administrator
* @version 1.0
* @created 26-10月-2025 14:21:59
*/
interface Shape {
public void draw();
public String getColor();
}