mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-28 07:07:43 +00:00
34 lines
877 B
C++
34 lines
877 B
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2003 by David White <davidnwhite@optusnet.com.au>
|
|
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
#include "game_config.hpp"
|
|
|
|
namespace game_config
|
|
{
|
|
const int unit_cost = 1;
|
|
const int base_income = 2;
|
|
const int tower_income = 1;
|
|
const int heal_amount = 4;
|
|
const int healer_heals_per_turn = 8;
|
|
const int cure_amount = 8;
|
|
const int curer_heals_per_turn = 18;
|
|
const int recall_cost = 20;
|
|
const std::string version = "0.4.9-CVS";
|
|
bool debug = false;
|
|
|
|
#ifdef WESNOTH_PATH
|
|
std::string path = WESNOTH_PATH;
|
|
#else
|
|
std::string path = "";
|
|
#endif
|
|
}
|