liblcf
Loading...
Searching...
No Matches
rpg_savemapevent.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/savemapevent.h"
14
15namespace lcf {
16namespace rpg {
17
18std::ostream& operator<<(std::ostream& os, const SaveMapEvent& obj) {
19 os << "SaveMapEvent{";
20 os << "waiting_execution="<< obj.waiting_execution;
21 os << ", original_move_route_index="<< obj.original_move_route_index;
22 os << ", triggered_by_decision_key="<< obj.triggered_by_decision_key;
23 os << ", parallel_event_execstate="<< obj.parallel_event_execstate;
24 os << "}";
25 return os;
26}
27
28} // namespace rpg
29} // namespace lcf
std::ostream & operator<<(std::ostream &os, const Actor &obj)
Definition: rpg_actor.cpp:18
Definition: dbarray.cpp:13