OnJava8-Examples/reuse/SpaceShipControls.java

13 lines
308 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// reuse/SpaceShipControls.java
2015-06-15 17:47:35 -07:00
// <20>2015 MindView LLC: see Copyright.txt
public class SpaceShipControls {
void up(int velocity) {}
void down(int velocity) {}
void left(int velocity) {}
void right(int velocity) {}
void forward(int velocity) {}
void back(int velocity) {}
void turboBoost() {}
2015-09-07 11:44:36 -06:00
}