1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-27 00:41:08 +02:00

-rewrote GarrisonInt with use of object capturing

- BitmapHandler can now load images from any format supported by SDL_Image
note: file can have any possible format but extension should be .bmp or .pcx
- fixed some warnings
This commit is contained in:
Ivan Savenko
2010-08-27 16:20:35 +00:00
parent 527a0ef4d6
commit 4d171bd53c
9 changed files with 129 additions and 250 deletions

View File

@ -2,7 +2,11 @@
#include "CConfigHandler.h"
#include <boost/bind.hpp>
#include <boost/function.hpp>
#if BOOST_VERSION >= 103800
#include <boost/spirit/include/classic.hpp>
#else
#include <boost/spirit.hpp>
#endif
#include <fstream>
using namespace config;
using namespace boost::spirit;