Files
UpLowLimp/ZBD_IIIDL_S_Project/Src/TrainManager/armandleg.cpp
curtis 32e5360a91 11/25
2024-11-25 17:15:44 +08:00

15 lines
208 B
C++

#include "armandleg.h"
#include "ui_armandleg.h"
ArmAndLeg::ArmAndLeg(QWidget *parent) :
QWidget(parent),
ui(new Ui::ArmAndLeg)
{
ui->setupUi(this);
}
ArmAndLeg::~ArmAndLeg()
{
delete ui;
}