mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-01-19 08:52:34 +01:00
54a4d6d007
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4053
33 lines
647 B
C++
33 lines
647 B
C++
/* ======== SourceMM ========
|
|
* Copyright (C) 2004-2005 Metamod:Source Development Team
|
|
* 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 <interface.h>
|
|
#include <eiface.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
|