1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 09:38:56 +08:00

Added SetNext to ConCommandBase, required for MM:S.

This commit is contained in:
Nicholas Hastings 2013-10-06 12:36:32 -04:00
parent 14d75c2f42
commit 34d4b05185

View File

@ -130,6 +130,11 @@ public:
// Deal with next pointer
const ConCommandBase *GetNext( void ) const;
ConCommandBase *GetNext( void );
inline void SetNext(ConCommandBase *pBase)
{
m_pNext = pBase;
}
virtual bool IsRegistered( void ) const;