Add UserStats to project.

This commit is contained in:
KyleSanderson
2014-01-12 18:37:20 -07:00
parent 0c303159a1
commit e5e3807329
5 changed files with 221 additions and 1 deletions
+2
View File
@@ -48,11 +48,13 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
this->pSWForward = new SteamWorksForwards;
this->pGSNatives = new SteamWorksGSNatives;
this->pGSHooks = new SteamWorksGSHooks;
this->pSSNatives = new SteamWorksSSNatives;
return true;
}
void SteamWorks::SDK_OnUnload()
{
delete this->pSSNatives;
delete this->pGSHooks;
delete this->pGSNatives;
delete this->pSWForward;