diff --git a/Facepunch.Steamworks/SteamFriends.cs b/Facepunch.Steamworks/SteamFriends.cs index 8be5d34..fd4ec6a 100644 --- a/Facepunch.Steamworks/SteamFriends.cs +++ b/Facepunch.Steamworks/SteamFriends.cs @@ -298,5 +298,22 @@ public static bool ListenForFriendsMessages } } + public static async Task IsFollowing(SteamId steamID) + { + var r = await Internal.IsFollowing(steamID); + return r.Value.IsFollowing; + } + + public static async Task GetFollowerCount(SteamId steamID) + { + var r = await Internal.GetFollowerCount(steamID); + return r.Value.Count; + } + + public static async Task EnumerateFollowingList(uint StartIndex) + { + var r = await Internal.EnumerateFollowingList(StartIndex); + return r.Value.GSteamID; + } } }