Files
wx_wherigo/main/src/cApp.cpp
2026-02-12 14:06:01 +01:00

9 lines
124 B
C++

#include "cApp.h"
#include "ui/cFrame.h"
bool cApp::OnInit()
{
auto *frame = new cFrame();
return frame->Show(true);
}