Missed

Garry Newman 2016-11-09 12:01:20 +00:00
parent 5cef757e4a
commit bfce0191b5
2 changed files with 14 additions and 2 deletions

@ -2,5 +2,6 @@
## Property
public [[IEnumerable<SteamFriend>|https://msdn.microsoft.com/en-us/library/ya5y69ds.aspx]] **[[AllBlocked|Facepunch.Steamworks.Friends.AllBlocked]]** { get; set; }
## Summary
No documentation available
### Summary
Returns all blocked users

@ -1,5 +1,16 @@
# Friends
### Summary
Handles most interactions with people in Steam, not just friends as the name would suggest.
### Example
```
foreach ( var friend in client.Friends.AllFriends )
{
Console.WriteLine( $"{friend.Id}: {friend.Name}" );
}
```
### Methods
* public [[SteamFriend|Facepunch.Steamworks.SteamFriend]] **[[Get|Facepunch.Steamworks.Friends.Get]]**( [[ulong|https://msdn.microsoft.com/en-us/library/ya5y69ds.aspx]] steamid );