30 lines
1.3 KiB
C
30 lines
1.3 KiB
C
//
|
|
// Yet Another POD-Bot, based on PODBot by Markus Klinge ("CountFloyd").
|
|
// Copyright (c) YaPB Development Team.
|
|
//
|
|
// This software is licensed under the BSD-style license.
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
// https://yapb.jeefo.net/license
|
|
//
|
|
|
|
#pragma once
|
|
|
|
// general product information
|
|
#define PRODUCT_NAME "Yet Another POD-Bot"
|
|
#define PRODUCT_VERSION "2.8"
|
|
#define PRODUCT_AUTHOR "YaPB Dev Team"
|
|
#define PRODUCT_URL "https://yapb.jeefo.net/"
|
|
#define PRODUCT_EMAIL "dmitry@jeefo.net"
|
|
#define PRODUCT_LOGTAG "YAPB"
|
|
#define PRODUCT_DESCRIPTION PRODUCT_NAME " v" PRODUCT_VERSION " - The Counter-Strike Bot"
|
|
#define PRODUCT_COPYRIGHT "Copyright © 1999-2017, by " PRODUCT_AUTHOR
|
|
#define PRODUCT_LEGAL "Half-Life, Counter-Strike, Counter-Strike: Condition Zero, Steam, Valve is a trademark of Valve Corporation"
|
|
#define PRODUCT_ORIGINAL_NAME "yapb.dll"
|
|
#define PRODUCT_INTERNAL_NAME "skybot"
|
|
#define PRODUCT_VERSION_DWORD_INTERNAL 2,8
|
|
#define PRODUCT_VERSION_DWORD PRODUCT_VERSION_DWORD_INTERNAL,0
|
|
#define PRODUCT_SUPPORT_VERSION "1.0 - CZ"
|
|
#define PRODUCT_COMMENTS "http://github.com/jeefo/yapb/"
|
|
#define PRODUCT_DATE __DATE__
|
|
#define PRODUCT_GIT_HASH "unspecified_hash"
|
|
#define PRODUCT_GIT_COMMIT_AUTHOR "unspecified_author"
|