OnJava8-Examples/reusing/SpaceShipControls.java
2015-04-20 15:36:01 -07:00

12 lines
276 B
Java

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