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/testbattler.h"
14 
15 namespace lcf {
16 namespace rpg {
17 
operator <<(std::ostream & os,const TestBattler & obj)18 std::ostream& operator<<(std::ostream& os, const TestBattler& obj) {
19 	os << "TestBattler{";
20 	os << "actor_id="<< obj.actor_id;
21 	os << ", level="<< obj.level;
22 	os << ", weapon_id="<< obj.weapon_id;
23 	os << ", shield_id="<< obj.shield_id;
24 	os << ", armor_id="<< obj.armor_id;
25 	os << ", helmet_id="<< obj.helmet_id;
26 	os << ", accessory_id="<< obj.accessory_id;
27 	os << "}";
28 	return os;
29 }
30 
31 } // namespace rpg
32 } // namespace lcf
33