10 lines
239 B
Java
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;
|
|
}
|