1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Add CreateCmdLine overloads from TF2 version 9247927 (2024-10-11) (#276)

This commit is contained in:
nosoop 2024-10-11 07:13:37 -07:00 committed by GitHub
parent b1a7396112
commit fecc02ac80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,6 +39,10 @@ public:
virtual const char* GetParm( int nIndex ) const = 0;
virtual bool HasParm( const char *parm ) = 0;
// Additions in 9247927 (2024-10-11)
virtual void CreateCmdLine( const char *commandline, bool unknown ) = 0;
virtual void CreateCmdLine( int argc, char **argv, bool unknown ) = 0;
};
//-----------------------------------------------------------------------------