Initialize SDK
Initialize SDK.
note
Before calling the Player Network SDK module, be sure to initialize the Player Network SDK first.
caution
On Windows platform, you need to call SetDefaultUserStorage first.
Function Definition
public static void InitSDK();
Code example
using INTL;// import INTL namespace
void InitializeINTLSDK()
{
INTLAPI.IsDebug = true; // Set SDK to Debug mode to print logs, default is false
INTLAPI.InitSDK();
}