1 /* !!!! GENERATED FILE - DO NOT EDIT !!!!
2  * --------------------------------------
3  *
4  * This file is part of liblcf. Copyright (c) 2021 liblcf authors.
5  * https://github.com/EasyRPG/liblcf - https://easyrpg.org
6  *
7  * liblcf is Free/Libre Open Source Software, released under the MIT License.
8  * For the full copyright and license information, please view the COPYING
9  * file that was distributed with this source code.
10  */
11 
12 // Headers
13 #include "lcf/rpg/savetarget.h"
14 
15 namespace lcf {
16 namespace rpg {
17 
operator <<(std::ostream & os,const SaveTarget & obj)18 std::ostream& operator<<(std::ostream& os, const SaveTarget& obj) {
19 	os << "SaveTarget{";
20 	os << "map_id="<< obj.map_id;
21 	os << ", map_x="<< obj.map_x;
22 	os << ", map_y="<< obj.map_y;
23 	os << ", switch_on="<< obj.switch_on;
24 	os << ", switch_id="<< obj.switch_id;
25 	os << "}";
26 	return os;
27 }
28 
29 } // namespace rpg
30 } // namespace lcf
31