public void AskFriendListConsent() { if (!GameServices.IsInitialized()) { NativeUI.Alert("Alert", "You need to initialize the module first."); return; } GameServices.AskForLoadFriendsResolution((status) => { NativeUI.Alert("Friend list permission resolution", status.ToString()); }); }