public class GameRunner
{
	public static void main(String[] args) 
	{
		//test values for the game
			       //LVL    1   2   3
		//int[] points = {200,100,500};
		int[] points = {100,80,560};
		//int[] points = {150,90,60};
			
			   //LVL    1   2   3
		int[] goal = {200,100,500};
		
		Game x = new Game(points,goal);
		
		//bonus value is 500
		//if the sum of the point values
		//of all levels is > 500
		//bonus is true
		
		//get score of starting game
		//before play has been called
		System.out.println( x.getScore() );
		
		//the play method does the following
		/*
		one.addPoints( 50 );
		two.addPoints( 10 );
		three.addPoints( -30 );	
		*/
		
		System.out.println( x.playManyTimes( 4 ));
		System.out.println( x.getScore() );		
	}
}