diff --git a/Facepunch.Steamworks/Client/Friends.cs b/Facepunch.Steamworks/Client/Friends.cs index 38f318c..36cd95d 100644 --- a/Facepunch.Steamworks/Client/Friends.cs +++ b/Facepunch.Steamworks/Client/Friends.cs @@ -136,6 +136,14 @@ public Image GetAvatar( Friends.AvatarSize size ) { return Client.Friends.GetCachedAvatar( size, Id ); } + + /// + /// Invite this friend to the game that we are playing + /// + public bool InviteToGame(string Text) + { + return Client.native.friends.InviteUserToGame(Id, Text); + } } ///