/**
 * Simple puzzle app which attaches three views
 * to one model and one controller.
 *
 * @author Owen Astrachan
 */
public class PuzzleApp
{
    public PuzzleApp()
    {
	PuzzleController control = new PuzzleController();
	PuzzleModel pmodel  = new PuzzleModel(control, 10);
	PuzzleGui   pgui    = new PuzzleGui(control, "images/ola.jpg");
	PuzzleGui   pgui2   = new PuzzleGui(control);
	PuzzleGui   pgui3   = new PuzzleGui(control, "images/mickey.gif");
    }

    public static void main(String args[])
    {
	new PuzzleApp();
    }
}
