QGobang/QGobangClient/Ui/widget.cpp
2025-07-24 04:08:36 +08:00

17 lines
223 B
C++

#include "widget.h"
#include "ui_widget.h"
using namespace NS_QGobangClient;
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
}
Widget::~Widget()
{
delete ui;
}