diff --git a/Facepunch.Steamworks/SteamUserStats.cs b/Facepunch.Steamworks/SteamUserStats.cs
index 8592205..0ea0532 100644
--- a/Facepunch.Steamworks/SteamUserStats.cs
+++ b/Facepunch.Steamworks/SteamUserStats.cs
@@ -222,5 +222,15 @@ public static float GetStatFloat( string name )
Internal.GetStat2( name, ref data );
return data;
}
+
+ ///
+ /// Practically wipes the slate clean for this user. If includeAchievements is true, will wipe
+ /// any achievements too.
+ ///
+ ///
+ public static bool ResetAll( bool includeAchievements )
+ {
+ return Internal.ResetAllStats( includeAchievements );
+ }
}
}
\ No newline at end of file