2005-05-26 10:32:34 +02:00
|
|
|
/* ======== sample_mm ========
|
2007-03-02 03:43:22 +01:00
|
|
|
* Copyright (C) 2004-2007 Metamod:Source Development Team
|
2006-08-14 07:37:58 +02:00
|
|
|
* No warranties of any kind
|
|
|
|
*
|
|
|
|
* License: zlib/libpng
|
|
|
|
*
|
|
|
|
* Author(s): David "BAILOPAN" Anderson
|
|
|
|
* ============================
|
|
|
|
*/
|
2005-05-26 10:32:34 +02:00
|
|
|
|
|
|
|
#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
|