Exemple #1
0
    // =========================================================================
    // 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");
    }
Exemple #2
0
 /**
  * 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");
 }
Exemple #3
0
 void OnDestroy()
 {
     ALC_Manager.Destroy();
     ALC_ResultListener.PrintLog -= PrintLog;
 }