mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-21 01:56:46 +00:00
26 lines
733 B
C++
26 lines
733 B
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2003 by David White <davidnwhite@optusnet.com.au>
|
|
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
#ifndef MULTIPLAYER_HPP_INCLUDED
|
|
#define MULTIPLAYER_HPP_INCLUDED
|
|
|
|
#include "config.hpp"
|
|
#include "display.hpp"
|
|
#include "gamestatus.hpp"
|
|
#include "unit_types.hpp"
|
|
#include "video.hpp"
|
|
|
|
void play_multiplayer(display& disp, game_data& units_data,
|
|
config& cfg, game_state& state);
|
|
|
|
#endif
|