1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-17 01:32:21 +02:00

- First part of kingdom overview window (not a 100% stable)

- Implemented town buildings: dwarven treasury, ballista yard, partially - mystic pond
This commit is contained in:
Ivan Savenko
2010-01-25 21:25:14 +00:00
parent 3ec6cfd115
commit 0f22ba0c0f
14 changed files with 816 additions and 39 deletions

View File

@ -352,6 +352,15 @@ void CGeneralTextHandler::load()
allTexts.push_back(buflet);
}
std::string stro = bitmaph->getTextFile("Overview.txt");
itr=0;
while(itr<stro.length()-1)
{
loadToIt(tmp, stro, itr, 3);
trimQuotation(tmp);
overview.push_back(tmp);
}
std::string strs = bitmaph->getTextFile("ARRAYTXT.TXT");
itr=0;