1. Press 💾 Download & drop CloudShield.dll in client folder , CloudShield.lib in ClientSRC/External/library and CloudShield.h in ClientSRC/External/include

2. In UserInterface.cpp, before "bool Main(HINSTANCE hInstance, LPSTR lpCmdLine)" add this:

    #pragma comment( lib, "CloudShield.lib" )
    #include <CloudShield.h>
            
Click to copy

3. In UserInterface.cpp, inside "bool Main(HINSTANCE hInstance, LPSTR lpCmdLine)" call the function defined in CloudShield.h:

    CloudShieldLite();
            
Click to copy