/**
* @author Charles Cusack
* @version 1.0, September, 2006
*
*/
import javax.swing.*;
public class MVC_Ferzle extends JApplet {
public void init() {
// Instantiate the model, view, and controller.
FerzleModel model=new FerzleModel();
FerzleView view=new FerzleView(model);
new FerzleController(model,view);
// We only need to add the view to the applet.
this.add(view);
}
}