[Feature Request] Steam_IsFullyLoaded native
In a few of my SteamTools plugins I'm doing this:
Is it possible to get a native that already keeps track of this in addition to the forwards?
Code:
new bool:g_bSteamLoaded;
public Steam_FullyLoaded()
{
g_bSteamLoaded = true;
}
public Steam_Shutdown()
{
g_bSteamLoaded = false;
}
if (g_bSteamLoaded)
{
// do something
}
Is it possible to get a native that already keeps track of this in addition to the forwards?
Code:
native bool:Steam_IsFullyLoaded();
Orignal From: [Feature Request] Steam_IsFullyLoaded native
Post a Comment