2007-05-13 08:37:38 +02:00
|
|
|
/**
|
|
|
|
* vim: set ts=4 :
|
|
|
|
* ===============================================================
|
|
|
|
* SourceMod, Copyright (C) 2004-2007 AlliedModders LLC.
|
|
|
|
* All rights reserved.
|
|
|
|
* ===============================================================
|
|
|
|
*
|
|
|
|
* This file is part of the SourceMod/SourcePawn SDK. This file may only be
|
|
|
|
* used or modified under the Terms and Conditions of its License Agreement,
|
|
|
|
* which is found in public/licenses/LICENSE.txt. As of this notice, derivative
|
|
|
|
* works must be licensed under the GNU General Public License (version 2 or
|
|
|
|
* greater). A copy of the GPL is included under public/licenses/GPL.txt.
|
|
|
|
*
|
|
|
|
* To view the latest information, see: http://www.sourcemod.net/license.php
|
|
|
|
*
|
|
|
|
* Version: $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE_SOURCEMOD_EXTENSION_CONFIG_H_
|
|
|
|
#define _INCLUDE_SOURCEMOD_EXTENSION_CONFIG_H_
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file smsdk_config.h
|
|
|
|
* @brief Contains macros for configuring basic extension information.
|
|
|
|
*/
|
|
|
|
|
2007-06-27 02:35:36 +02:00
|
|
|
#include "svn_version.h"
|
|
|
|
|
2007-05-13 08:37:38 +02:00
|
|
|
/* Basic information exposed publicly */
|
|
|
|
#define SMEXT_CONF_NAME "SDK Tools"
|
2007-06-16 10:36:34 +02:00
|
|
|
#define SMEXT_CONF_DESCRIPTION "Source SDK Tools"
|
2007-06-27 02:35:36 +02:00
|
|
|
#define SMEXT_CONF_VERSION SVN_FULL_VERSION
|
2007-05-13 08:37:38 +02:00
|
|
|
#define SMEXT_CONF_AUTHOR "AlliedModders"
|
|
|
|
#define SMEXT_CONF_URL "http://www.sourcemod.net/"
|
|
|
|
#define SMEXT_CONF_LOGTAG "SDKTOOLS"
|
|
|
|
#define SMEXT_CONF_LICENSE "GPL"
|
|
|
|
#define SMEXT_CONF_DATESTRING __DATE__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Exposes plugin's main interface.
|
|
|
|
*/
|
|
|
|
#define SMEXT_LINK(name) SDKExtension *g_pExtensionIface = name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sets whether or not this plugin required Metamod.
|
|
|
|
* NOTE: Uncomment to enable, comment to disable.
|
|
|
|
*/
|
|
|
|
#define SMEXT_CONF_METAMOD
|
|
|
|
|
2007-06-16 10:36:34 +02:00
|
|
|
/** Enable interfaces you want to use here by uncommenting lines */
|
|
|
|
//#define SMEXT_ENABLE_FORWARDSYS
|
|
|
|
#define SMEXT_ENABLE_HANDLESYS
|
|
|
|
#define SMEXT_ENABLE_PLAYERHELPERS
|
|
|
|
//#define SMEXT_ENABLE_DBMANAGER
|
|
|
|
#define SMEXT_ENABLE_GAMECONF
|
|
|
|
#define SMEXT_ENABLE_MEMUTILS
|
2007-07-25 22:23:34 +02:00
|
|
|
#define SMEXT_ENABLE_GAMEHELPERS
|
2007-06-30 18:43:11 +02:00
|
|
|
//#define SMEXT_ENABLE_TIMERSYS
|
2007-07-02 02:25:46 +02:00
|
|
|
#define SMEXT_ENABLE_ADTFACTORY
|
2007-06-16 10:36:34 +02:00
|
|
|
|
2007-05-13 08:37:38 +02:00
|
|
|
#endif // _INCLUDE_SOURCEMOD_EXTENSION_CONFIG_H_
|