/** * The Driver class only declares a Mastermind object and tells the game to start. * * @author John Paxton * @version 1.0 */ public class Driver { public static void main(String args[]) { Mastermind mind = new Mastermind(10); //pass in tries mind.startGame(); } }