mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-07 00:06:36 +00:00

using this shell script: find src -type f -print0 | xargs -0 sed -i "s|Copyright (C) \([[:digit:]]*\)\([ ]*\)-\([ ]*\)2015|Copyright (C) \1\2-\32016|g"
23 lines
848 B
C++
23 lines
848 B
C++
/*
|
|
Copyright (C) 2011 - 2016 by mark de wever <koraq@xs4all.nl>
|
|
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 as published by
|
|
the Free Software Foundation; either version 2 of the License, 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.
|
|
*/
|
|
|
|
#include "game_errors.hpp"
|
|
|
|
std::string game::load_game_exception::game;
|
|
bool game::load_game_exception::show_replay;
|
|
bool game::load_game_exception::cancel_orders;
|
|
bool game::load_game_exception::select_difficulty;
|
|
std::string game::load_game_exception::difficulty;
|
|
bool game::load_game_exception::skip_version_check;
|