pos: move trans form to form dir.

This commit is contained in:
2025-06-18 11:11:08 +08:00
parent 3248713cea
commit 280721f29b
7 changed files with 5 additions and 3 deletions

19
Gui/Form/Transform.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include "Transform.h"
#include <QMessageBox>
#include "ui_Transform.h"
TransForm::TransForm(QWidget* parent) : QDialog(parent), ui(new Ui::TransForm)
{
ui->setupUi(this);
}
TransForm::~TransForm()
{
delete ui;
}
void TransForm::SetClientCore(ClientCore* clientCore)
{
clientCore_ = clientCore;
}