mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-02 14:24:16 +01:00
25 lines
479 B
C
25 lines
479 B
C
|
/* ======== sample_mm ========
|
||
|
* Copyright (C) 2004-2005 Metamod:Source Development Team
|
||
|
* No warranties of any kind
|
||
|
*
|
||
|
* License: zlib/libpng
|
||
|
*
|
||
|
* Author(s): David "BAILOPAN" Anderson
|
||
|
* ============================
|
||
|
*/
|
||
|
|
||
|
#ifndef _INCLUDE_CVARS_H
|
||
|
#define _INCLUDE_CVARS_H
|
||
|
|
||
|
#include <convar.h>
|
||
|
|
||
|
class SampleAccessor : public IConCommandBaseAccessor
|
||
|
{
|
||
|
public:
|
||
|
virtual bool RegisterConCommandBase(ConCommandBase *pVar);
|
||
|
};
|
||
|
|
||
|
extern SampleAccessor g_Accessor;
|
||
|
|
||
|
#endif //_INCLUDE_CVARS_H
|