mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
29 lines
1021 B
C++
29 lines
1021 B
C++
#ifndef ICVAR_H
|
|
#define ICVAR_H
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward declarations
|
|
//-----------------------------------------------------------------------------
|
|
class ConCommandBase;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// ConVars/ComCommands are marked as having a particular DLL identifier
|
|
//-----------------------------------------------------------------------------
|
|
typedef int CVarDLLIdentifier_t;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// ConVars/ComCommands are marked as having a particular DLL identifier
|
|
//-----------------------------------------------------------------------------
|
|
typedef int CVarDLLIdentifier_t;
|
|
|
|
abstract_class ICVarIteratorInternal
|
|
{
|
|
public:
|
|
virtual void SetFirst(void) = 0;
|
|
virtual void Next(void) = 0;
|
|
virtual bool IsValid(void) = 0;
|
|
virtual ConCommandBase* Get(void) = 0;
|
|
};
|
|
|
|
#endif // ICVAR_H
|