moved some includes

This commit is contained in:
Mark de Wever 2007-02-09 19:24:22 +00:00
parent e8a62d5fab
commit 7368cf87c4
2 changed files with 10 additions and 5 deletions

View File

@ -13,12 +13,17 @@
#include "playturn.hpp"
#include "config.hpp"
#include "display.hpp"
#include "game_config.hpp"
#include "gamestatus.hpp"
#include "gettext.hpp"
#include "preferences.hpp"
#include "replay.hpp"
#include "show_dialog.hpp"
#include "sound.hpp"
#include "team.hpp"
#include "unit.hpp"
turn_info::turn_info(const game_data& gameinfo, game_state& state_of_game,
const gamestatus& status, display& gui, gamemap& map,

View File

@ -13,18 +13,18 @@
#ifndef PLAYTURN_HPP_INCLUDED
#define PLAYTURN_HPP_INCLUDED
class display;
class config;
struct game_state;
class replay_network_sender;
class team;
class unit;
#include "global.hpp"
#include "actions.hpp"
#include "config.hpp"
#include "display.hpp"
#include "gamestatus.hpp"
#include "generic_event.hpp"
#include "network.hpp"
#include "team.hpp"
#include "unit.hpp"
#include <map>
#include <vector>