public void LoadUsers(string[] userIds, Action <IUserProfile[]> callback) { if (!this.VerifyAuthentication()) { if (callback != null) { callback(new UserProfile[0]); } } else { GameCenterPlatform.Internal_LoadUsers(userIds, callback); } }
public void LoadUsers(string[] userIds, Action <IUserProfile[]> callback) { bool flag = !this.VerifyAuthentication(); if (flag) { bool flag2 = callback != null; if (flag2) { IUserProfile[] obj = new UserProfile[0]; callback(obj); } } else { GameCenterPlatform.Internal_LoadUsers(userIds, callback); } }