Package net.sf.mrailsim.main

Examples of net.sf.mrailsim.main.MapReader


import net.sf.mrailsim.main.MapReader;

public class Test_02_MapReader {

  public static void main(String[] args) {
    MapReader mapReader = new MapReader( 5, 5, 10 );
   
    mapReader.addRow( "1 5 5 5 2" );
    mapReader.addRow( "6 . . . 6" );
    mapReader.addRow( "4 5 5 5 3" );
   
    mapReader.generate();
    mapReader.output();
  }
View Full Code Here

TOP

Related Classes of net.sf.mrailsim.main.MapReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.