public class GameRunner {

	public static void main(String args[])
	{
		Game game = new Game(new Level(200, true), new Level(100, true), new Level(500, true), true);
		System.out.println("Game Score is: "+game.getScore());
		System.out.println("--------------------------------------------------");
		
		game = new Game(new Level(200, true), new Level(100, true), new Level(500, false), false);
		System.out.println("Game Score is: "+game.getScore());
		System.out.println("--------------------------------------------------");
		
		game = new Game(new Level(200, true), new Level(100, false), new Level(500, true), true);
		System.out.println("Game Score is: "+game.getScore());
		System.out.println("--------------------------------------------------");
		
		game = new Game(new Level(200, false), new Level(100, true), new Level(500, true), false);
		System.out.println("Game Score is: "+game.getScore());
		System.out.println("--------------------------------------------------");
		
		System.out.println("Game Score for playManyTimes(4) is: "+game.playManyTimes(4));
	}
}
