Added SteamFriend.SendMessage

This commit is contained in:
Garry Newman 2018-02-15 13:36:01 +00:00
parent e71cce0817
commit 727741b81a

View File

@ -124,5 +124,13 @@ public bool InviteToGame(string Text)
{
return Client.native.friends.InviteUserToGame(Id, Text);
}
/// <summary>
/// Sends a message to a Steam friend. Returns true if success
/// </summary>
public bool SendMessage( string message )
{
return Client.native.friends.ReplyToFriendMessage( Id, message );
}
}
}