/*
 *	
 *  Filename: GuessWindow.java
 *  Java Application GuessWindow: 
 *  Controlling class for GuessModel(model) and GuessPanel(GUI viewl)(Lab 7)
 *  Author: Achim E Karger
 *  Course: CSCI 111 Java I
 *  Assignment: Lab 7
 *  Date:   May 3, 2008
 *  compiler JCreator LE
 *
 *  
 * 
 */

import javax.swing.JFrame; 

public class GuessWindow {
    public static void main(String args[]) {
        GuessModel       model = new GuessModel();
        GuessPanel       view = new GuessPanel(model);
        GuessController  controller = new GuessController(model, view);
 
		JFrame window = new JFrame("A. Karger, Guessing Game Application with Image Icons");
		window.setContentPane(view); 
		window.setSize(400,400);
		window.setLocation(100,100); 
		window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); 
		window.pack();
		window.setVisible(true);

  }
}








