first re-commit.

This commit is contained in:
2025-08-05 22:37:51 +02:00
commit 5295a82aa3
109 changed files with 9928 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include "mcformwidget.h"
#include "ui_mcformwidget.h"
MCFormWidget::MCFormWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::MCFormWidget)
{
ui->setupUi(this);
}
MCFormWidget::~MCFormWidget()
{
delete ui;
}