/**
 * 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 pgui1 = new PuzzleGui(control, "ola.jpg");
        PuzzleGui pgui2 = new PuzzleGui(control);
        PuzzleGui pgui3 = new PuzzleGui(control, "mickey.gif");
    }


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