11 lines
215 B
Java
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();
|
|
}
|