SteamUserStats.ResetAll

This commit is contained in:
Garry Newman 2019-05-08 14:52:05 +01:00
parent 3212f39be5
commit 0342f8a712

View File

@ -222,5 +222,15 @@ public static float GetStatFloat( string name )
Internal.GetStat2( name, ref data );
return data;
}
/// <summary>
/// Practically wipes the slate clean for this user. If includeAchievements is true, will wipe
/// any achievements too.
/// </summary>
/// <returns></returns>
public static bool ResetAll( bool includeAchievements )
{
return Internal.ResetAllStats( includeAchievements );
}
}
}