CheatMenuSA/tests/Test.cpp
2021-02-15 14:49:01 +06:00

32 lines
385 B
C++

#include "plugin.h"
#include "CHud.h"
using namespace plugin;
void DoStuff();
class Test
{
public:
Test()
{
Events::processScriptsEvent += DoStuff;
}
~Test()
{
Events::processScriptsEvent -= DoStuff;
}
} test;
void DoStuff()
{
CHud::SetMessage((char*)"Test");
if (KeyPressed(VK_TAB))
{
test.~Test();
}
}