liblcf
Loading...
Searching...
No Matches
rpg_attribute.cpp
Go to the documentation of this file.
1/* !!!! GENERATED FILE - DO NOT EDIT !!!!
2 * --------------------------------------
3 *
4 * This file is part of liblcf. Copyright (c) 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/attribute.h"
14
15namespace lcf {
16namespace rpg {
17
18std::ostream& operator<<(std::ostream& os, const Attribute& obj) {
19 os << "Attribute{";
20 os << "name="<< obj.name;
21 os << ", type="<< obj.type;
22 os << ", a_rate="<< obj.a_rate;
23 os << ", b_rate="<< obj.b_rate;
24 os << ", c_rate="<< obj.c_rate;
25 os << ", d_rate="<< obj.d_rate;
26 os << ", e_rate="<< obj.e_rate;
27 os << "}";
28 return os;
29}
30
31} // namespace rpg
32} // namespace lcf
std::ostream & operator<<(std::ostream &os, const Actor &obj)
Definition rpg_actor.cpp:18