liblcf
Loading...
Searching...
No Matches
rpg_savepanorama.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/savepanorama.h"
14
15namespace lcf {
16namespace rpg {
17
18std::ostream& operator<<(std::ostream& os, const SavePanorama& obj) {
19 os << "SavePanorama{";
20 os << "pan_x="<< obj.pan_x;
21 os << ", pan_y="<< obj.pan_y;
22 os << "}";
23 return os;
24}
25
26} // namespace rpg
27} // namespace lcf
std::ostream & operator<<(std::ostream &os, const Actor &obj)
Definition rpg_actor.cpp:18