1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-07 09:43:40 +08:00

Revert "Update IAppSystem for latest DoI update."

This reverts commit b96f78a0b70b2242d0a870d0e3efa6b45a1ab5e0.
This commit is contained in:
Nicholas Hastings 2017-10-31 17:20:56 -04:00
parent 277495c012
commit 344b15617b

View File

@ -76,9 +76,6 @@ public:
// Reconnect to a particular interface // Reconnect to a particular interface
virtual void Reconnect( CreateInterfaceFn factory, const char *pInterfaceName ) = 0; virtual void Reconnect( CreateInterfaceFn factory, const char *pInterfaceName ) = 0;
// Returns whether or not the app system is a singleton
virtual bool IsSingleton() = 0;
}; };
@ -108,8 +105,6 @@ public:
{ {
ReconnectInterface( factory, pInterfaceName ); ReconnectInterface( factory, pInterfaceName );
} }
virtual bool IsSingleton() { return true; }
}; };