void Start()
    {
        CloudGoods.OnUserAuthorized += OnReceivedSocialPlayUser;

        WebPlatformLink webplatformLink = new WebPlatformLink();

        webplatformLink.Initiate();
    }
Exemplo n.º 2
0
    void Start()
    {
        if (string.IsNullOrEmpty(AccessToken))
            throw new Exception("You must supply an AppId to communicate with Cloud Goods");


        Systems.AppId = new Guid(AccessToken);
        WebPlatformLink.OnRecievedUser += OnReceivedSocialPlayUser;

        WebPlatformLink webplatformLink = new WebPlatformLink();
        webplatformLink.Initiate();
    }
Exemplo n.º 3
0
    void Start()
    {
        if (string.IsNullOrEmpty(AccessToken))
        {
            throw new Exception("You must supply an AppId to communicate with Cloud Goods");
        }


        Systems.AppId = new Guid(AccessToken);
        WebPlatformLink.OnRecievedUser += OnReceivedSocialPlayUser;

        WebPlatformLink webplatformLink = new WebPlatformLink();

        webplatformLink.Initiate();
    }