Merge pull request #116 from BrinerLovo/patch-1

Update for can send invitations.
This commit is contained in:
Garry Newman 2018-02-09 09:07:40 +00:00 committed by GitHub
commit 9a9a310b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,6 +136,14 @@ public Image GetAvatar( Friends.AvatarSize size )
{
return Client.Friends.GetCachedAvatar( size, Id );
}
/// <summary>
/// Invite this friend to the game that we are playing
/// </summary>
public bool InviteToGame(string Text)
{
return Client.native.friends.InviteUserToGame(Id, Text);
}
}
/// <summary>