mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-02 14:24:16 +01:00
744d2415db
Added MSCBuff's FireGameEvent code. --HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4069
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
|