cuticle/ui/main.cpp

12 lines
156 B
C++
Raw Normal View History

2024-06-26 20:47:26 +03:00
#include<wx/wx.h>
#include"frame.h"
struct App : wxApp {
virtual bool OnInit() {
(new Frame())->Show(true);
return true;
}
};
wxIMPLEMENT_APP(App);