Generic docs

Garry Newman 2016-11-04 21:07:30 +00:00
parent 9eae1b9c69
commit 1e5f3e354e
3 changed files with 9 additions and 3 deletions

@ -4,4 +4,6 @@
void UpdateWhile( Func\<bool\> func ) void UpdateWhile( Func\<bool\> func )
``` ```
## Summary ## Summary
No documentation available Run Update until func returns false.
This will cause your program to lock up until it finishes.
This is useful for things like tests or command line utilities etc.

@ -4,4 +4,6 @@
void Commit( ulong steamid, Action\<bool\> Callback ) void Commit( ulong steamid, Action\<bool\> Callback )
``` ```
## Summary ## Summary
No documentation available Once you've set a stat change on a user you need to commit your changes.
You can do that using this function. The callback will let you know if
your action succeeded, but most of the time you can fire and forget.

@ -4,4 +4,6 @@
void Refresh( ulong steamid, Action\<bool\> Callback ) void Refresh( ulong steamid, Action\<bool\> Callback )
``` ```
## Summary ## Summary
No documentation available Retrieve the stats for this user. If you pass a callback function in
this will be called when the stats are recieved, the bool will signify whether
it was successful or not.