mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-03 01:45:41 +00:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2003-2005 by David White <dave@whitevine.net>
|
|
Copyright (C) 2005 - 2007 by Philippe Plantier <ayin@anathas.org>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2
|
|
or at your option any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
#ifndef PLAYCAMPAIGN_H_INCLUDED
|
|
#define PLAYCAMPAIGN_H_INCLUDED
|
|
|
|
#include "menu_events.hpp"
|
|
|
|
class display;
|
|
class game_state;
|
|
class config;
|
|
class game_data;
|
|
struct upload_log;
|
|
|
|
enum io_type_t {
|
|
IO_NONE,
|
|
IO_SERVER,
|
|
IO_CLIENT
|
|
};
|
|
|
|
LEVEL_RESULT play_game(display& disp, game_state& state, const config& game_config,
|
|
const game_data& units_data, upload_log &log,
|
|
io_type_t io_type=IO_NONE,
|
|
bool skip_replay = false);
|
|
|
|
|
|
void play_replay(display& disp, game_state& state, const config& game_config,
|
|
const game_data& units_data, CVideo& video);
|
|
|
|
#endif // PLAYCAMPAIGN_H_INCLUDED
|
|
|