import java.applet.*;

public class GENTRUCK extends GENERIC_CELL_GAME{
 
  String game_name="TRUCK DODGE";

  public void init(){
    super.init();
    grid = new GENGRID();
    title=new String[game_name.length()];
    for(int i = 0; i<game_name.length(); i++){
      title[i]="" + game_name.charAt(i);
    }
  }

  public void reset(){
    grid = new GENGRID();
  }
}
    