Files
frelay/Gui/Control/Transform.cpp

20 lines
316 B
C++
Raw Normal View History

2025-06-16 23:41:35 +08:00
#include "Transform.h"
2025-06-16 20:06:49 +08:00
#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;
}