mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-14 02:23:53 +01:00
20 lines
496 B
C
20 lines
496 B
C
|
/* ======== SourceMM ========
|
||
|
* Copyright (C) 2004-2007 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
|
||
|
|
||
|
#include "metamod_provider.h"
|
||
|
|
||
|
bool Command_Meta(edict_t *pEdict, IMetamodSourceCommandInfo *info);
|
||
|
bool Command_ClientMeta(edict_t *client, IMetamodSourceCommandInfo *info);
|
||
|
|
||
|
#endif //_INCLUDE_CONCOMMANDS_H
|