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

Update icommandline.h (#277)

This commit is contained in:
Benoist 2024-10-19 01:46:19 +02:00 committed by GitHub
parent fecc02ac80
commit e0e01948b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======//
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
@ -41,8 +41,8 @@ public:
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;
virtual void CreateCmdLine1( const char *commandline, bool unknown ) = 0;
virtual void CreateCmdLine1( int argc, char **argv, bool unknown ) = 0;
};
//-----------------------------------------------------------------------------