Advertisement
CaptainSpaceCat

ElectricRunner - Main

Apr 16th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. import java.util.Scanner;
  2. import java.lang.Math;
  3. import java.io.*;
  4.  
  5. class Main {
  6.   public static void main(String[] args) throws IOException {
  7.     Scanner scan = new Scanner(System.in);
  8.    
  9.     //Board board = new Board(5, 5, 0);
  10.     //System.out.println(board.toString());
  11.     //board.shuffle(100);
  12.     //System.out.println(board.toString());
  13.    
  14.     RunUI run = new RunUI();
  15.     run.init();
  16.   }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement