mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 17:47:38 +08:00
Added SetNext to ConCommandBase, required for MM:S.
This commit is contained in:
parent
14d75c2f42
commit
34d4b05185
@ -130,6 +130,11 @@ public:
|
|||||||
// Deal with next pointer
|
// Deal with next pointer
|
||||||
const ConCommandBase *GetNext( void ) const;
|
const ConCommandBase *GetNext( void ) const;
|
||||||
ConCommandBase *GetNext( void );
|
ConCommandBase *GetNext( void );
|
||||||
|
|
||||||
|
inline void SetNext(ConCommandBase *pBase)
|
||||||
|
{
|
||||||
|
m_pNext = pBase;
|
||||||
|
}
|
||||||
|
|
||||||
virtual bool IsRegistered( void ) const;
|
virtual bool IsRegistered( void ) const;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user