AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   SteamTools (https://forums.alliedmods.net/forumdisplay.php?f=147)
-   -   Steam_IsFullyLoaded native (https://forums.alliedmods.net/showthread.php?t=171000)

GoD-Tony 10-31-2011 10:01

Steam_IsFullyLoaded native
 
In a few of my SteamTools plugins I'm doing this:
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();


All times are GMT -4. The time now is 14:49.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.