Files
oop/assignment5/Question2/Movable.java
2022-04-24 13:24:47 +08:00

10 lines
239 B
Java

/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-24
* Description: This is a moveable interface.
*/
public interface Movable {
public int accelerate(int amount) throws ExceedSpeedLimit, NotEnoughSpeed;
}