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/moveroute.h"
14 
15 namespace lcf {
16 namespace rpg {
17 
operator <<(std::ostream & os,const MoveRoute & obj)18 std::ostream& operator<<(std::ostream& os, const MoveRoute& obj) {
19 	os << "MoveRoute{";
20 	os << "move_commands=";
21 	for (size_t i = 0; i < obj.move_commands.size(); ++i) {
22 		os << (i == 0 ? "[" : ", ") << obj.move_commands[i];
23 	}
24 	os << "]";
25 	os << ", repeat="<< obj.repeat;
26 	os << ", skippable="<< obj.skippable;
27 	os << "}";
28 	return os;
29 }
30 
31 } // namespace rpg
32 } // namespace lcf
33