1 /*
2    Copyright (C) 2017-2018 the Battle for Wesnoth Project https://www.wesnoth.org/
3 
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8    This program is distributed in the hope that it will be useful,
9    but WITHOUT ANY WARRANTY.
10 
11    See the COPYING file for more details.
12 */
13 
14 #include "actions/undo_update_shroud_action.hpp"
15 #include "replay.hpp"
16 
17 namespace actions
18 {
19 namespace undo
20 {
21 
22 
23 /**
24  * Writes this into the provided config.
25  */
write(config & cfg) const26 void auto_shroud_action::write(config & cfg) const
27 {
28 	undo_action_base::write(cfg);
29 	cfg["active"] = active;
30 }
31 
32 /**
33  * Writes this into the provided config.
34  */
write(config & cfg) const35 void update_shroud_action::write(config & cfg) const
36 {
37 	undo_action_base::write(cfg);
38 }
39 
40 
41 }
42 }
43