mirror of
https://github.com/Adaptix-Framework/AdaptixC2
synced 2026-06-08 10:20:39 +00:00
13 lines
217 B
C++
13 lines
217 B
C++
#include <main.h>
|
|
#include <MainAdaptix.h>
|
|
|
|
MainAdaptix* GlobalClient = nullptr;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
GlobalClient = new MainAdaptix();
|
|
GlobalClient->Start();
|
|
}
|