package CheckerArray;
/**
 * App.java
 *
 *
 */

public class App extends NGP.Containers.Frame {
  public App (){
    super("CheckerBoard");
    
    NGP.Containers.Column col =  new NGP.Containers.Column(this);
    new CheckerChanger(col);
    new NGP.Components.QuitButton(col, "Quit");
  }
  
  public static void main(String[] args){
    App app = new App();

    app.pack();
    app.show();
  }
} // App
