liblcf
rpg_music.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) 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/music.h"
14
15namespace lcf {
16namespace rpg {
17
18std::ostream& operator<<(std::ostream& os, const Music& obj) {
19 os << "Music{";
20 os << "name="<< obj.name;
21 os << ", fadein="<< obj.fadein;
22 os << ", volume="<< obj.volume;
23 os << ", tempo="<< obj.tempo;
24 os << ", balance="<< obj.balance;
25 os << "}";
26 return os;
27}
28
29} // namespace rpg
30} // namespace lcf
std::ostream & operator<<(std::ostream &os, const Actor &obj)
Definition: rpg_actor.cpp:18
Definition: dbarray.cpp:13