mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-29 08:05:46 +03:00
17 lines
300 B
C
17 lines
300 B
C
|
#pragma once
|
||
|
|
||
|
class CRegameDLLRuntimeConfig
|
||
|
{
|
||
|
private:
|
||
|
bool bIsZero;
|
||
|
const char *getNextToken(char **pBuf);
|
||
|
|
||
|
public:
|
||
|
CRegameDLLRuntimeConfig();
|
||
|
|
||
|
bool IsCzero() const { return bIsZero; }
|
||
|
void parseFromCommandLine(const char *cmdLine);
|
||
|
};
|
||
|
|
||
|
extern CRegameDLLRuntimeConfig g_ReGameDLLRuntimeConfig;
|