mirror of
https://github.com/Adaptix-Framework/AdaptixC2
synced 2026-06-08 10:20:39 +00:00
11 lines
271 B
C++
11 lines
271 B
C++
#include <UI/MainUI.h>
|
|
|
|
MainUI::MainUI() {
|
|
this->setWindowTitle( FRAMEWORK_VERSION );
|
|
if ( this->objectName().isEmpty() )
|
|
this->setObjectName( QString::fromUtf8( "MainUI" ) );
|
|
|
|
mainWidget = new AdaptixWidget;
|
|
this->setCentralWidget(mainWidget);
|
|
}
|