1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-03 00:46:55 +02:00

- New animation system:

-- New files: hch/CAnimation.h/cpp
-- Class CAnimation capable to load file partially and/or keep data in compressed state
-- Buttons now use CAnimation instead of CDefHandler

- build system regenerated to include new files
- fixed several gcc warnings
- updated README.linux
This commit is contained in:
Ivan Savenko
2010-10-18 15:08:59 +00:00
parent 6cadd47f0d
commit c10dac929d
20 changed files with 1254 additions and 352 deletions

View File

@ -2,14 +2,18 @@
#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 <boost/version.hpp>
#include <fstream>
using namespace config;
#if BOOST_VERSION >= 103800
#include <boost/spirit/include/classic.hpp>
using namespace boost::spirit::classic;
#else
#include <boost/spirit.hpp>
using namespace boost::spirit;
#endif
using namespace phoenix;
/*