// Hauptprogramm für Sudoku
// Klaus Kusche, 2010

#include <wx/app.h>

#include "sudoku.h"

class MyApp: public wxApp
{
  virtual bool OnInit();
};

IMPLEMENT_APP(MyApp)

bool MyApp::OnInit()
{
  Sudoku *gui = new Sudoku();
  
  gui->Show(true);
  SetTopWindow(gui);

  return true;
}
