wxMahjong/App.cpp

21 lines
686 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "App.h"
#include "MainFrame.h"
#include <wx/filefn.h>
wxIMPLEMENT_APP(MyApp);
bool MyApp::OnInit() {
wxImage::AddHandler(new wxPNGHandler());
MainFrame* frame = new MainFrame(); // Создаём окно игры
if (argc >= 2 && wxFileExists(argv[1])) // Если пользователь ввёл какие-то аргументы
frame->layoutPath = argv[1]; // считаем, что первый аргумент - путь до файла карты
frame->Show(true); // показываем окно
SetTopWindow(frame); // и устанавливаем главным, а так же выносим вперёд
return true;
}