blob: fba8078a2a77554449718c8e03d347aa503641ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "gamebase/GameBase.hpp"
class AppendGameDialog : public DialogAppendGame {
GameBase *base;
std::vector<TabInfos *> tinfos;
public:
AppendGameDialog(wxWindow *parent, GameBase *base);
void OnCancel(wxCommandEvent &event);
void OnImport(wxCommandEvent &event);
};
|