コード例 #1
0
 public void InviteFriends(string message, string title, FacebookInviteCompleteDelegate callback)
 {
     if (FacebookNativeController.m_NativeInviteFriends != null)
     {
         FacebookNativeController.m_NativeInviteFriends(message, title, callback);
     }
 }
コード例 #2
0
 public void InviteFriends(string message, string title, FacebookInviteCompleteDelegate callback)
 {
     Service.Get <GameIdleController>().Enabled = false;
     FacebookManager.OnInviteCallback           = callback;
     FacebookManager.FBController.InviteFriends(message, title, new FacebookInviteCompleteDelegate(this.OnFriendsInvited));
 }