OnJava8-Examples/reuse/SpaceShipControls.java

13 lines
315 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: reuse/SpaceShipControls.java
// <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() {}
} ///:~