Files
oop/lab/lab7/Question8/Flyer.java
2022-04-03 15:15:13 +08:00

11 lines
215 B
Java

/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022/04/03
* Description: This is the interface of Flyer.
*/
public interface Flyer {
public String getName();
public boolean canFly();
}