Пример #1
0
 private bool IsEqual(GKPlayer other)
 {
     return(PlayerID.Equals(other.PlayerID));
 }
Пример #2
0
        /// <summary>
        /// Cancels a pending invitation to another player.
        /// </summary>
        /// <returns><c>true</c> if this instance cancel pending invite the specified player; otherwise, <c>false</c>.</returns>
        /// <param name="player">Player.</param>
        public void CancelPendingInvite(GKPlayer player)
        {
            Util.NullArgumentTest(player);

            C.GKMatchmaker_cancelPendingInviteToPlayer(SelfPtr(), player.ToPointer());
        }