blob: 3510568cea4246dbc4957b119e2afa305348aaab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "ochess.hpp"
#include "MainWindow.hpp"
bool MyApp::OnInit() {
wxImage::AddHandler(new wxPNGHandler);
MainWindow *frame = new MainWindow();
frame->Show(true);
return true;
}
wxIMPLEMENT_APP(MyApp);
void Abort(std::string msg) {
wxMessageDialog *dial = new wxMessageDialog(NULL, wxString(msg), wxT("Error"),
wxOK | wxICON_ERROR);
dial->ShowModal();
wxLogFatalError(wxString(msg));
}
|