Add Game Coordinator Hooks (untested).

This commit is contained in:
Kyle Sanderson
2016-03-03 20:38:00 -08:00
committed by Josh Allard
parent 66100139ee
commit 9f70645270
9 changed files with 284 additions and 1 deletions
+2
View File
@@ -55,11 +55,13 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
this->pGSHooks = new SteamWorksGSHooks;
this->pGSDetours = new SteamWorksGSDetours;
this->pSSNatives = new SteamWorksSSNatives;
this->pGCHooks = new SteamWorksGCHooks;
return true;
}
void SteamWorks::SDK_OnUnload()
{
delete this->pGCHooks;
delete this->pSSNatives;
delete this->pGSDetours;
delete this->pGSHooks;