2005-04-16 21:59:26 +02:00
|
|
|
/* ======== SourceMM ========
|
2005-04-17 01:33:39 +02:00
|
|
|
* Copyright (C) 2004-2005 Metamod:Source Development Team
|
2005-04-16 21:59:26 +02:00
|
|
|
* No warranties of any kind
|
|
|
|
*
|
|
|
|
* License: zlib/libpng
|
|
|
|
*
|
|
|
|
* Author(s): David "BAILOPAN" Anderson
|
|
|
|
* ============================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE_CONCOMMANDS_H
|
|
|
|
#define _INCLUDE_CONCOMMANDS_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Header for console commands
|
|
|
|
* @file concommands.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sourcemm.h"
|
|
|
|
#include <convar.h>
|
|
|
|
|
|
|
|
class SMConVarAccessor : public IConCommandBaseAccessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool RegisterConCommandBase(ConCommandBase *pCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern SMConVarAccessor g_SMConVarAccessor;
|
|
|
|
|
|
|
|
#endif //_INCLUDE_CONCOMMANDS_H
|