// ========================================================================= // API 호출 // ========================================================================= /** * Check license in flexible mode */ public void CheckLicenseOfFlexible() { Debug.Log("UIManager CheckLicenseOfFlexible"); PrintLog("UIManager", "Flexible Click !!!"); ALC_Manager.CheckLicense(Constant.BASE_64_ENCODED_PUBLIC_KEY, "Flexible"); }
/** * Check license in strict mode */ public void CheckLicenseOfStrict() { Debug.Log("UIManager CheckLicenseOfStrict"); PrintLog("UIManager", "Strict Click !!!"); ALC_Manager.CheckLicense(Constant.BASE_64_ENCODED_PUBLIC_KEY, "Strict"); }
void OnDestroy() { ALC_Manager.Destroy(); ALC_ResultListener.PrintLog -= PrintLog; }