Пример #1
0
 void LoginCallback(StardomAPIReply reply)
 {
     if (reply.Success)
     {
         api.GetUserProfile(UserProfileCallback);
     }
     else
     {
         Debug.Log("Failed login");
     }
 }
Пример #2
0
 void LoginCallback(StardomAPIReply reply)
 {
     if (reply.Success)
     {
         Debug.Log("Successful login");
         TestGameFriends();
     }
     else
     {
         Debug.Log("Failed login");
     }
 }