/**
  Space by A.H. Schulak (Shoe) October 1996
  Space by A.H. Schulak (Shoe) March 1998
**/

package Space;

public class KeyLeft extends Key {    

  public KeyLeft(GP.Graphic graphic, ShipHolder shipHolder) {
    super(graphic, "j" ,shipHolder); 
  }
  
  public void KeyPress() {
    _shipHolder.GetShip().TurnLeft();
  }
  
}
