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