OnJava8-Examples/reuse/SpaceShipControls.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

13 lines
315 B
Java

//: reuse/SpaceShipControls.java
// ©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() {}
} ///:~