KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > thewayout > two > Steering


1 package de.thewayout.two;
2 public class Steering
3         implements SteeringConstants
4 {
5     public int calculateStep(SpaceShip ship)
6     {
7         return STEERING_NO_CHANGE;
8     }
9     
10 }
11
Popular Tags