/* * Filename: TestGame.java * Created on March 10, 2006 * * ULID: sawhite2 * Course: ITK 168 * Section: 4 * Instructor: White */ /** * This program allows the user to play a simplified * version of the game MasterMind. The pattern to * guess is randomly generated by the computer. * * @author Shirley White */ public class MasterMindApplication { /** * @param args */ public static void main(String[] args) { Game masterMind = new Game(); GameView masterMindWindow = new GameView(masterMind); masterMind.addView(masterMindWindow); } }