liblcf
Loading...
Searching...
No Matches
lmu_chunks.h
Go to the documentation of this file.
1/* !!!! GENERATED FILE - DO NOT EDIT !!!!
2 * --------------------------------------
3 *
4 * This file is part of liblcf. Copyright (c) 2020 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#ifndef LCF_LMU_CHUNKS_H
13#define LCF_LMU_CHUNKS_H
14
18namespace LMU_Reader {
20 enum Index {
22 flags = 0x01,
32 item_id = 0x06,
34 actor_id = 0x07,
36 timer_sec = 0x08,
38 timer2_sec = 0x09,
40 compare_operator = 0x0A
41 };
42 };
44 enum Index {
50 repeat = 0x15,
52 skippable = 0x16
53 };
54 };
56 enum Index {
58 condition = 0x02,
70 move_type = 0x1F,
74 trigger = 0x21,
76 layer = 0x22,
82 move_speed = 0x25,
84 move_route = 0x29,
88 event_commands = 0x34
89 };
90 };
91 struct ChunkEvent {
92 enum Index {
94 name = 0x01,
96 x = 0x02,
98 y = 0x03,
100 pages = 0x05
101 };
102 };
103 struct ChunkMap {
104 enum Index {
108 width = 0x02,
110 height = 0x03,
134 top_level = 0x2A,
164 events = 0x51,
168 save_count = 0x5B
169 };
170 };
171}
172
173#endif