Ejemplo n.º 1
0
        public bool TryGetFriendDetails(SteamID userID, out FriendDetails friend)
        {
            if (friends.ContainsKey(userID))
            {
                friend = friends[userID];
                return(true);
            }

            friend = default(FriendDetails);
            return(false);
        }
Ejemplo n.º 2
0
 public bool TryGetFriendDetails(SteamID userID, out FriendDetails friend)
 => eventHandler.TryGetFriendDetails(userID, out friend);