12 lines
276 B
Java
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() {}
|
||
|
} ///:~
|