mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
9 lines
233 B
C++
9 lines
233 B
C++
class FileConverter : public wxFrame
|
|
{
|
|
public:
|
|
FileConverter(wxWindow* parent);
|
|
virtual bool Show(bool);
|
|
|
|
private:
|
|
bool m_Transient; // if true, the window won't be shown (since it's assumed to have been destroyed immediately)
|
|
};
|